import React from 'react'; import { InlineParserPropTypes } from './types'; import InlineSyntax, { splitter } from './InlineSyntax'; const Paragraph: React.FC = ({ line }) => { const result = line.split(splitter).map(span => ); return

{result}

; } export default Paragraph;