Skip to content

Instantly share code, notes, and snippets.

@OussaZaki
Last active February 22, 2018 14:42
Show Gist options
  • Save OussaZaki/ad6dff7c1d295f35ec4f27ca91bd2f62 to your computer and use it in GitHub Desktop.
Save OussaZaki/ad6dff7c1d295f35ec4f27ca91bd2f62 to your computer and use it in GitHub Desktop.
Conditional Rendering - Loader Component
function Loader(props) {
if (!props.showLoader) {
return null;
}
return (
<div className="loader">
<WavyLoader black />
<p>{props.message}</p>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment