2022-03-06 16:46:59 -08:00
|
|
|
import { memo } from "react"
|
2022-03-08 16:39:24 -08:00
|
|
|
import ReactMarkdownPreview from "./react-markdown-preview"
|
2022-03-06 16:46:59 -08:00
|
|
|
|
2022-03-08 16:39:24 -08:00
|
|
|
const MarkdownPreview = ({ content = '', height = 500 }: { content?: string, height?: number | string }) => {
|
|
|
|
return (<ReactMarkdownPreview height={height} content={content} />)
|
2022-03-06 16:46:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default memo(MarkdownPreview)
|