Files
gridpilot.gg/apps/website/app/leagues/[id]/schedule/LeagueScheduleStatic.tsx
2026-01-05 19:35:49 +01:00

10 lines
393 B
TypeScript

import { LeagueScheduleTemplate } from '@/templates/LeagueScheduleTemplate';
interface LeagueScheduleStaticProps {
leagueId: string;
}
export default async function LeagueScheduleStatic({ leagueId }: LeagueScheduleStaticProps) {
// The LeagueScheduleTemplate doesn't need data fetching - it delegates to LeagueSchedule component
return <LeagueScheduleTemplate leagueId={leagueId} />;
}