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