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 ; }