You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
276 B
TypeScript

import CourtsComponent from './CourtsComponent';
export default async function CourtsPage({
params
}: {
params: Promise<{ club_id: string }>
}) {
const { club_id } = await params;
const clubId = parseInt(club_id, 10);
return <CourtsComponent clubId={clubId} />;
}