Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Created June 20, 2018 04:41
Show Gist options
  • Select an option

  • Save bmorelli25/758332eec2f50f61a26ab9fa0fa798a9 to your computer and use it in GitHub Desktop.

Select an option

Save bmorelli25/758332eec2f50f61a26ab9fa0fa798a9 to your computer and use it in GitHub Desktop.
comment-list.js
// src/components/comment-list.js
import React from 'react'
export default ({comments}) => {
comments = comments.map((comment, i) => (
<div key={i} style={{
padding: '5px',
border: '1px solid grey'
}}>
<p><strong>{comment.author}:</strong></p>
<p>{comment.message}</p>
</div>
))
return (
<section>
<strong>Comments: </strong>{comments}
</section>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment