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