vision-agent / components /chat /MemoizedReactMarkdown.tsx
MingruiZhang's picture
clean up code
052672d
raw
history blame
288 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,
);