10 lines
393 B
TypeScript
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} />;
|
|
} |