Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created April 14, 2020 14:58
Show Gist options
  • Save jsmanifest/de5dc5389174f382d513b0890ffa3e33 to your computer and use it in GitHub Desktop.
Save jsmanifest/de5dc5389174f382d513b0890ffa3e33 to your computer and use it in GitHub Desktop.
function List({ groupName, members = [] }) {
return (
<div>
<h5>
Group: <em>{groupName}</em>
</h5>
<ul>
<p>Members</p>
{members.map((member) => (
<li key={member}>{member}</li>
))}
</ul>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment