2026-08-15 14:46:19 +03:00

17 lines
449 B
TypeScript

'use client';
import dynamic from 'next/dynamic';
import { Box, LinearProgress } from '@mui/material';
const UnitPageLegacy = dynamic(() => import('@/src/legacy-pages/UnitPage'), {
ssr: false,
loading: () => (
<Box sx={{ display: 'flex', justifyContent: 'center', py: 8 }}>
<LinearProgress sx={{ width: '200px' }} />
</Box>
),
});
export default function UnitPageClient() {
return <UnitPageLegacy />;
}