Created
April 29, 2019 18:58
-
-
Save AndrewUsher/b357f6ea32f11532077d8ca235e06ce4 to your computer and use it in GitHub Desktop.
If React Component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const If = ({ children, condition }) => condition && children; | |
// Usage | |
/* | |
<If condition={true}> | |
This will be rendered. | |
</If> | |
<If condition={false}> | |
This will not be rendered. | |
</If> | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment