I am trying to render an ordered list using react-markdown
:
import ReactMarkdown from 'react-markdown';
import remarkGfm from 'remark-gfm'
const MyComponent = () => {
const markdown = `<ol><li>Item1</li><li>Item2</li></ol>`;
return (
<ReactMarkdown children={markdown} remarkPlugins={[remarkGfm]} />
);
}
The output is the string <ol><li>Item1</li><li>Item2</li></ol>
. What am I missing?