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.
18 lines
446 B
TypeScript
18 lines
446 B
TypeScript
import AdminAuthGuard from '@/src/components/AdminAuthGuard';
|
|
import TransfersManagementComponent from './TransfersManagementComponent';
|
|
|
|
export default async function TransfersManagementPage({
|
|
params
|
|
}: {
|
|
params: Promise<{ club_id: string }>;
|
|
}) {
|
|
const { club_id } = await params;
|
|
const clubId = parseInt(club_id, 10);
|
|
|
|
return (
|
|
<AdminAuthGuard>
|
|
<TransfersManagementComponent clubId={clubId} />
|
|
</AdminAuthGuard>
|
|
);
|
|
}
|