Skip to content

Instantly share code, notes, and snippets.

@vasco3
Created August 5, 2020 11:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vasco3/32b8fcb5023f7890571d12f1ef655baa to your computer and use it in GitHub Desktop.
Save vasco3/32b8fcb5023f7890571d12f1ef655baa to your computer and use it in GitHub Desktop.
If (React component)
const If = ({ children, orThis, it }) => {
return it ? children : orThis;
}
// usage example
<div>
<If it={age > 18} orThis={"🥤"}> 🍺 </If>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment