import React, { FC } from 'react'; import { ICommentBlockProps } from '~/constants/comment'; import styles from './styles.module.scss'; interface IProps extends ICommentBlockProps {} const CommentTextBlock: FC = ({ block }) => { return (
${block.content}

`, }} /> ); }; export { CommentTextBlock };