import React from 'react'; const CommentContent = ({comment}) => { const textbreaks = comment.body.split('\n'); return
{ textbreaks.map((line, i) => { return ( {line}
); }) }
; }; export default CommentContent;