Created
January 19, 2018 00:52
-
-
Save JoaoCnh/1d72971519a9330643a8d021623f4465 to your computer and use it in GitHub Desktop.
React Comp
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
<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