Skip to content

Instantly share code, notes, and snippets.

@Sangrene
Created November 12, 2019 13:43
Show Gist options
  • Save Sangrene/de61c2a4df390dba78811ee2d6fe622d to your computer and use it in GitHub Desktop.
Save Sangrene/de61c2a4df390dba78811ee2d6fe622d to your computer and use it in GitHub Desktop.
import React from 'react';
interface Props {
if: boolean;
}
const Conditionnal: React.FC<Props> = props => {
if (props.if) {
return <React.Fragment>{props.children}</React.Fragment>;
} else {
return null;
}
};
export default Conditionnal;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment