bingo / src /components /markdown.tsx
Awaaaaa's picture
Duplicate from hf4all/bingo
d9b6e9f
Raw
History Blame Contribute Delete
290 Bytes
import { FC, memo } from 'react'
import ReactMarkdown, { Options } from 'react-markdown'
export const MemoizedReactMarkdown: FC<Options> = memo(
ReactMarkdown,
(prevProps, nextProps) =>
prevProps.children === nextProps.children &&
prevProps.className === nextProps.className
)