mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
add comments for guests
This commit is contained in:
parent
cbf7b1f616
commit
8abf6177b5
16 changed files with 278 additions and 194 deletions
8
src/containers/node/NodeCommentForm/ssr.ts
Normal file
8
src/containers/node/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