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