Skip to content

Instantly share code, notes, and snippets.

@jonhilt
Created June 9, 2018 20:11
Show Gist options
  • Save jonhilt/acd2ca98e85fb5fdd076a8283db17207 to your computer and use it in GitHub Desktop.
Save jonhilt/acd2ca98e85fb5fdd076a8283db17207 to your computer and use it in GitHub Desktop.
public render() {
return (
<div>
<h1>My Users</h1>
<table className="user-list">
<tbody>
{this.state.users.map(user =>
<UserRow key={user.id} user={user} />)}
</tbody>
</table>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment