CampFireID/app/components/ClientPage.tsx
2025-03-16 13:29:37 +03:00

17 lines
328 B
TypeScript

'use client';
import dynamic from 'next/dynamic';
import { Center, Spinner } from '@chakra-ui/react';
const MainApp = dynamic(() => import('./MainApp'), {
ssr: false,
loading: () => (
<Center h="100vh">
<Spinner size="xl" />
</Center>
),
});
export default function ClientPage() {
return <MainApp />;
}