Skip to content

Instantly share code, notes, and snippets.

@Siemko
Created November 6, 2017 14:22
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 Siemko/bcc7f99494256f43132b0cbc20a90b5d to your computer and use it in GitHub Desktop.
Save Siemko/bcc7f99494256f43132b0cbc20a90b5d to your computer and use it in GitHub Desktop.
const Commentlist = ({comments}) => (
<ul>
{comments.map(({ body, author }) =>
<li>{body}-{author}</li>
)}
</ul>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment