Skip to content

Instantly share code, notes, and snippets.

@jamesplease
Created March 1, 2017 21:24
Show Gist options
  • Save jamesplease/41df7c1a28244d3d933393635697e1b0 to your computer and use it in GitHub Desktop.
Save jamesplease/41df7c1a28244d3d933393635697e1b0 to your computer and use it in GitHub Desktop.
render() {
return (
<Resource name="book" loading={LoadingComponent} error={ErrorComponent}>
{(resource, resourceMeta) => {
return (<div>hello {resource.name}</div>);
}}
</Resource>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment