Skip to content

Instantly share code, notes, and snippets.

@TondaHack
Created December 20, 2017 09:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TondaHack/7053759859f88bfca829904732594482 to your computer and use it in GitHub Desktop.
Save TondaHack/7053759859f88bfca829904732594482 to your computer and use it in GitHub Desktop.
import React from 'react';
export default ({userList}) =>(
<ul className="user-list">
{userList.map(({login, id})=>{
return (<li key={id}>{login}</li>);
})}
</ul>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment