Skip to content

Instantly share code, notes, and snippets.

@phpsmarter
Created January 16, 2018 09:20
Show Gist options
  • Save phpsmarter/2463f6831e30e66c40e939ce158b928c to your computer and use it in GitHub Desktop.
Save phpsmarter/2463f6831e30e66c40e939ce158b928c to your computer and use it in GitHub Desktop.
Created with Copy to Gist
render() {
const { loading, data } = props;
if (loading) return <Loader />;
return <DisplayData data={data} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment