mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
8 lines
207 B
TypeScript
8 lines
207 B
TypeScript
import dynamic from 'next/dynamic';
|
|
|
|
import type { Props } from './index';
|
|
|
|
export const NodeCommentFormSSR = dynamic<Props>(
|
|
() => import('./index').then((it) => it.NodeCommentForm),
|
|
{ ssr: false },
|
|
);
|