'use client'; import React from 'react'; import { Box } from '@/ui/Box'; import { Stack } from '@/ui/Stack'; import { Text } from '@/ui/Text'; import { Heading } from '@/ui/Heading'; import type { LeagueScheduleViewData } from '@/lib/view-data/leagues/LeagueScheduleViewData'; import { LeagueSchedule } from '@/components/leagues/LeagueSchedule'; interface LeagueScheduleTemplateProps { viewData: LeagueScheduleViewData; } export function LeagueScheduleTemplate({ viewData }: LeagueScheduleTemplateProps) { return ( Race Schedule Upcoming and completed races for this season ); }