Skip to content

Instantly share code, notes, and snippets.

@MicroBenz
Created December 3, 2017 16:04
Show Gist options
  • Save MicroBenz/61d0e31297303580b012f53b31df79c3 to your computer and use it in GitHub Desktop.
Save MicroBenz/61d0e31297303580b012f53b31df79c3 to your computer and use it in GitHub Desktop.
Recompose
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