Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
12 lines
339 B
TypeScript
12 lines
339 B
TypeScript
import { MatchCalendar } from "@/components/calendar/match-calendar";
|
|
|
|
export default function MasterCalendarPage() {
|
|
return (
|
|
<MatchCalendar
|
|
apiPath="/api/master/calendar"
|
|
title="Fixture calendar"
|
|
description="All matches in leagues you manage — schedule and track from one retro grid."
|
|
/>
|
|
);
|
|
}
|