starchat-ui / components /Markdown /MemoizedReactMarkdown.tsx
matthoffner's picture
Duplicate from matthoffner/chatbot
13095e0
raw
history blame
258 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
)
);