File size: 232 Bytes
9f076f8
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { FC, memo } from 'react';
import ReactMarkdown from 'react-markdown';

export const MemoizedReactMarkdown = memo(
    ReactMarkdown,
    (prevProps, nextProps) => (
        prevProps.children === nextProps.children
    )
);