mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-28 22:26:41 +07:00
7 lines
209 B
TypeScript
7 lines
209 B
TypeScript
import dynamic from 'next/dynamic';
|
|
|
|
import type { SubmitBarProps } from './index';
|
|
|
|
export const SubmitBarSSR = dynamic<SubmitBarProps>(
|
|
() => import('./index').then(it => it.SubmitBar),
|
|
{ ssr: false });
|