Skip to content

Instantly share code, notes, and snippets.

@whtswrng
Last active October 13, 2018 11:30
Show Gist options
  • Save whtswrng/8ec172dd050d625ae6f5af93014580ee to your computer and use it in GitHub Desktop.
Save whtswrng/8ec172dd050d625ae6f5af93014580ee to your computer and use it in GitHub Desktop.
export class UserTable extends Component {
render() {
return (
<div>
<UserList>{
({users}) => {
return <table>
<thead>
<tr>
<th>Id</th>
<th>Name</th>
</tr>
</thead>
<tbody>
{users.map((user, index) => <UserRow key={index} user={user}/>)}
</tbody>
</table>
}
}
</UserList>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment