llama-gpt/components/Markdown/MemoizedReactMarkdown.tsx

5 lines
163 B
TypeScript

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