Skip to content

Instantly share code, notes, and snippets.

@aerrity
Created February 17, 2018 23:17
Show Gist options
  • Save aerrity/9aa4130775b43743cf9914a6ad55a2a5 to your computer and use it in GitHub Desktop.
Save aerrity/9aa4130775b43743cf9914a6ad55a2a5 to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDOM from 'react-dom';
class UserList extends React.Component {
render() {
const users = [{"id":1,"first_name":"Kevyn","last_name":"Charrette","email":"[email protected]"},
{"id":2,"first_name":"Katha","last_name":"Borham","email":"[email protected]"},
{"id":3,"first_name":"Clareta","last_name":"Mawford","email":"[email protected]"}];
const list = users.map( u => {
return <User key={u.id} name={`${u.first_name} ${u.last_name}`} email={u.email} />;
});
return (
<div>
<h1>My users are:</h1>
{list}
</div>
);
}
}
class User extends React.Component {
render() {
return (
<div style={{'borderStyle': 'dotted'}}>
<h3>{this.props.name}</h3>
<p>{this.props.email}</p>
</div>
);
}
}
ReactDOM.render(
<UserList />,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment