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
321 B
TypeScript
13 lines
321 B
TypeScript
import CreditsManagementComponent from './CreditsManagementComponent';
|
|
|
|
export default async function CreditsManagementPage({
|
|
params
|
|
}: {
|
|
params: Promise<{ club_id: string }>;
|
|
}) {
|
|
const { club_id } = await params;
|
|
const clubId = parseInt(club_id, 10);
|
|
|
|
return <CreditsManagementComponent clubId={clubId} />;
|
|
}
|