import { FC, memo } from 'react'; import ReactMarkdown, { Options } from 'react-markdown'; export const MemoizedReactMarkdown: FC = memo( ReactMarkdown, (prevProps, nextProps) => ( prevProps.children === nextProps.children ) );