'use client'; import LeagueSchedule from '@/components/leagues/LeagueSchedule'; import Card from '@/components/ui/Card'; // ============================================================================ // TYPES // ============================================================================ interface LeagueScheduleTemplateProps { leagueId: string; loading?: boolean; } // ============================================================================ // MAIN TEMPLATE COMPONENT // ============================================================================ export function LeagueScheduleTemplate({ leagueId, loading = false, }: LeagueScheduleTemplateProps) { if (loading) { return (