vision-agent / components /markdown.tsx
MingruiZhang's picture
init
3ba9c0c unverified
raw
history blame
No virus
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
)