Skip to content

Instantly share code, notes, and snippets.

@AndrewUsher
Created April 29, 2019 18:58
Show Gist options
  • Save AndrewUsher/b357f6ea32f11532077d8ca235e06ce4 to your computer and use it in GitHub Desktop.
Save AndrewUsher/b357f6ea32f11532077d8ca235e06ce4 to your computer and use it in GitHub Desktop.
If React Component
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