Created
August 5, 2020 11:06
-
-
Save vasco3/32b8fcb5023f7890571d12f1ef655baa 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, 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