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.trim()} {i !== textbreaks.length - 1 &&
}
); }) }
; }; export default CommentContent;