13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
|
|
import { ClubManagement } from '@/components/admin/club-management';
|
||
|
|
|
||
|
|
export default function AdminClubsPage() {
|
||
|
|
return (
|
||
|
|
<div className="max-w-6xl mx-auto space-y-6">
|
||
|
|
<div className="flex items-center justify-between">
|
||
|
|
<h1 className="text-3xl font-bold">Club Management</h1>
|
||
|
|
</div>
|
||
|
|
<ClubManagement />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|