vision-agent / components /chat /MemoizedReactMarkdown.tsx
MingruiZhang's picture
done (#4)
f80b091 unverified
raw
history blame
No virus
294 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,
);