Skip to content

Instantly share code, notes, and snippets.

@dglowinski
Created July 14, 2017 08:42
Show Gist options
  • Save dglowinski/29f2007b7e0d5c9878e292a6989d0705 to your computer and use it in GitHub Desktop.
Save dglowinski/29f2007b7e0d5c9878e292a6989d0705 to your computer and use it in GitHub Desktop.
React - hide component
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