Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created April 9, 2019 06:14
Show Gist options
  • Save tsh-code/3519751b9dcc79e2df849428b955b0d5 to your computer and use it in GitHub Desktop.
Save tsh-code/3519751b9dcc79e2df849428b955b0d5 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
export class UsersList extends Component {
render() {
const { users } = this.props;
return (
<ul>
{users.map(user => (
<li key={user.id}>
<div>
<strong>user name</strong>
{`${user.firstName} ${user.lastName}`}
</div>
<div>
<strong>email</strong>
{user.email}
</div>
</li>
))}
</ul>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment