Guest User

Untitled

a guest
Jun 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. // src/components/comment-list.js
  2.  
  3. import React from 'react'
  4. export default ({comments}) => {
  5. comments = comments.map((comment, i) => (
  6. <div key={i} style={{
  7. padding: '5px',
  8. border: '1px solid grey'
  9. }}>
  10. <p><strong>{comment.author}:</strong></p>
  11. <p>{comment.message}</p>
  12. </div>
  13. ))
  14. return (
  15. <section>
  16. <strong>Comments: </strong>{comments}
  17. </section>
  18. )
  19. }
Add Comment
Please, Sign In to add comment