React markdown parser
npm install @md-parser/reactThis package provides a utility for converting Markdown AST nodes to React nodes. It exports two components: MarkdownRenderer and MarkdownASTRenderer, as well as a set of types.
```sh
npm install @md-parser/react
`sh``
yarn add @md-parser/react
See the components defined in the examples
`tsx
import { MarkdownRenderer } from '@md-parser/react';
import { components } from './components';
export const Markdown = ({ markdown }: { markdown: string }) => (
)
``