mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
refactor comment components
This commit is contained in:
parent
60da84aad9
commit
eea7095e65
42 changed files with 89 additions and 76 deletions
8
src/containers/comments/NodeCommentForm/ssr.ts
Normal file
8
src/containers/comments/NodeCommentForm/ssr.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
import dynamic from 'next/dynamic';
|
||||
|
||||
import type { Props } from './index';
|
||||
|
||||
export const NodeCommentFormSSR = dynamic<Props>(
|
||||
() => import('./index').then((it) => it.NodeCommentForm),
|
||||
{ ssr: false },
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue