This package is a react markdown component that supports streaming rendering.
When you want to render markdown content in a streaming manner.
npm install @hoboy/micromark-react
import { MicroMarkdown } from '@hoboy/micromark-react'
const App = () => {
return (
<MicroMarkdown value="# Hello, World!" />
)
}