function UserList({ users }) { return (
{users.map(user => (
{user.name}
))}
); }