CoolFace
Apppublic

wang122/bingo

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
markdown.tsx10 linesDownload Raw Back to components
1import { FC, memo } from 'react'2import ReactMarkdown, { Options } from 'react-markdown'3 4export const MemoizedReactMarkdown: FC<Options> = memo(5  ReactMarkdown,6  (prevProps, nextProps) =>7    prevProps.children === nextProps.children &&8    prevProps.className === nextProps.className9)10