Created
March 1, 2017 21:24
-
-
Save jamesplease/41df7c1a28244d3d933393635697e1b0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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