mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 05:31:16 -05:00
feat: Implement collapsible sidebar navigation
This commit is contained in:
15
src/pages/AdminUsers.tsx
Normal file
15
src/pages/AdminUsers.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { AdminLayout } from '@/components/layout/AdminLayout';
|
||||
import { UserManagement } from '@/components/admin/UserManagement';
|
||||
|
||||
export default function AdminUsers() {
|
||||
return (
|
||||
<AdminLayout>
|
||||
<div className="container mx-auto px-6 py-8 max-w-7xl">
|
||||
<div>
|
||||
<h1 className="text-2xl font-bold mb-6">User Management</h1>
|
||||
<UserManagement />
|
||||
</div>
|
||||
</div>
|
||||
</AdminLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user