Skip to content

Instantly share code, notes, and snippets.

@doug2k1
Created September 28, 2016 03:49
Show Gist options
  • Save doug2k1/ee51a32a1660b35aa8cd30e2e9702ad1 to your computer and use it in GitHub Desktop.
Save doug2k1/ee51a32a1660b35aa8cd30e2e9702ad1 to your computer and use it in GitHub Desktop.
class UserList extends React.Component {
render () {
return (
<ul>
{this.props.users.map(user => <li key={user.id}>{user.name}</li>)}
</ul>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment