1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-29 14:46:41 +07:00
vault-frontend/src/components/bars/SubmitBar/ssr.ts
2022-07-17 12:36:09 +07:00

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 });