import { memo } from 'react' import type { FC, ReactNode } from 'react' interface ParagraphProps { node: { children: ReactNode; }; children: string[] } const Paragraph: FC = (props) => { // console.log('Paragraph', props) const { children } = props return

{children}

} export default memo(Paragraph)