Spaces:
Runtime error
Runtime error
File size: 258 Bytes
13095e0 |
1 2 3 4 5 6 7 8 9 10 |
import { FC, memo } from 'react';
import ReactMarkdown, { Options } from 'react-markdown';
export const MemoizedReactMarkdown: FC<Options> = memo(
ReactMarkdown,
(prevProps, nextProps) => (
prevProps.children === nextProps.children
)
);
|