Skip to content

Instantly share code, notes, and snippets.

@JoaoCnh
Created January 19, 2018 00:52
Show Gist options
  • Save JoaoCnh/1d72971519a9330643a8d021623f4465 to your computer and use it in GitHub Desktop.
Save JoaoCnh/1d72971519a9330643a8d021623f4465 to your computer and use it in GitHub Desktop.
React Comp
<List
url="https://api.github.com/users/JoaoCnh/repos"
render={({ list, isLoading }) => (
<div>
<h2>My repos</h2>
{isLoading && <h2>Loading...</h2>}
<ul>
{list.length > 0 && list.map(repo => (
<li key={repo.id}>
{repo.full_name}
</li>
))}
</ul>
</div>
)} />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment