import ReactMarkdown from'react-markdown';const components ={link:(props)=>(<a href={props.href} target="_blank" rel="noopener noreferrer">{props.children}</a>),thematicBreak:()=>'---'};functionMyComponent(){const markdownText ='This is some content\n\n---\n\nThis is more content';return(<ReactMarkdown components={components}>{markdownText}</ReactMarkdown>);}