Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Created November 30, 2017 16:49
Show Gist options
  • Save isacjunior/395625cff3bfad2577eeaf181245b717 to your computer and use it in GitHub Desktop.
Save isacjunior/395625cff3bfad2577eeaf181245b717 to your computer and use it in GitHub Desktop.
const List = ({ items }) => {
return (
<dl>
{items.map(item => (
<Fragment key={item.id}>
<dt>{item.term}</dt>
<dd>{item.description}</dd>
</Fragment>
))}
</dl>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment