Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import clsx from 'clsx';
import { html } from '../indices-to-html';
import { p } from './functions';
export const CommentBlock = ( { block, meta } ) => (
<div
className={ clsx( 'wpnc__comment', {
'comment-other': meta.ids.comment !== block.meta.ids.comment,
'comment-self': meta.ids.comment === block.meta.ids.comment,
} ) }
>
{ p( html( block ) ) }
</div>
);
export default CommentBlock;