Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Last active January 29, 2018 20:24
Show Gist options
  • Save viniciusdacal/00711c18587163b6770b7f7694775f72 to your computer and use it in GitHub Desktop.
Save viniciusdacal/00711c18587163b6770b7f7694775f72 to your computer and use it in GitHub Desktop.
const UserList = ({ isLoading, results }) => {
if (isLoading) {
return <span>Loading...</span>
}
return (
<ul>
{result.map((user) => (
<li>{user.name}</li>
))}
</ul>
)
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment