Created
July 14, 2017 08:42
-
-
Save dglowinski/29f2007b7e0d5c9878e292a6989d0705 to your computer and use it in GitHub Desktop.
React - hide 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
function WarningBanner(props) { | |
if (!props.warn) { | |
return null; | |
} | |
return ( | |
<div className="warning"> | |
Warning! | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment