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

17 lines
453 B
TypeScript

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