8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
'use client';
|
|
import dynamic from 'next/dynamic';
|
|
|
|
export const DynamicInitialLoader = dynamic(
|
|
() => import('./InitialLoader').then(mod => mod.InitialLoader),
|
|
{ ssr: false }
|
|
);
|