import React from 'react'; const name = 'coral-plugin-content'; const Content = ({body, styles}) => { const textbreaks = body.split('\n'); return
{ textbreaks.map((line, i) => {line}
) }
; }; export default Content;