Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Created March 23, 2018 21:34
Show Gist options
  • Save jacobp100/e21ec55674189a79e6bb49f8648bc8d9 to your computer and use it in GitHub Desktop.
Save jacobp100/e21ec55674189a79e6bb49f8648bc8d9 to your computer and use it in GitHub Desktop.
const fetchUser = createDataFetcher('http://website.com/users/me')
const UsesData = () => {
const user = fetchUser()
return (
<div>
{user.name}
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment