Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created April 9, 2019 06:15
Show Gist options
  • Save tsh-code/19bf669b8fefde3339881363c15d1859 to your computer and use it in GitHub Desktop.
Save tsh-code/19bf669b8fefde3339881363c15d1859 to your computer and use it in GitHub Desktop.
export class UsersList extends Component {
render() {
const { users } = this.props;
return (
<ul>
{users.map(user => (
<UsersListRow user={user} key={user.id} />
))}
</ul>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment