import React, { FC } from 'react'; import { useSWRxPageComment } from '../../stores/comment'; import { CommentEditor } from './CommentEditor'; type Props = { pageId: string, } const CommentEditorLazyRenderer:FC = (props:Props):JSX.Element => { const { pageId } = props; const { mutate } = useSWRxPageComment(pageId); return ( ); }; export default CommentEditorLazyRenderer;