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