Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
12 lines
337 B
TypeScript
12 lines
337 B
TypeScript
import { MatchCalendar } from "@/components/calendar/match-calendar";
|
|
|
|
export default function ManagerCalendarPage() {
|
|
return (
|
|
<MatchCalendar
|
|
apiPath="/api/manager/calendar"
|
|
title="Match calendar"
|
|
description="Your team fixtures across leagues and cups — click a day to see kickoffs."
|
|
/>
|
|
);
|
|
}
|