Skip to content

Instantly share code, notes, and snippets.

@CharlesMangwa
Last active March 15, 2018 19:41
Show Gist options
  • Save CharlesMangwa/85fd6eaee26e526f9d78ff4c8debd8a4 to your computer and use it in GitHub Desktop.
Save CharlesMangwa/85fd6eaee26e526f9d78ff4c8debd8a4 to your computer and use it in GitHub Desktop.
React Data Fetching - Basic use case
import React, { Component } from 'react'
import { Fetch } from 'react-data-fetching'
export default class App extends Component {
render() {
return (
<Fetch
url="https://api.github.com/users/octocat"
>
{({ data }) => (
<div>
<h1>Username</h1>
<p>{data.name}</p>
</div>
)}
</Fetch>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment