16 lines
418 B
TypeScript
16 lines
418 B
TypeScript
|
|
import { RoleTable } from "@/components/admin/roles/role-table";
|
||
|
|
|
||
|
|
export default function RolesPage() {
|
||
|
|
return (
|
||
|
|
<div className="container mx-auto py-8 px-4">
|
||
|
|
<div className="mb-8">
|
||
|
|
<h1 className="text-3xl font-bold">Role Management</h1>
|
||
|
|
<p className="text-muted-foreground mt-2">
|
||
|
|
Manage roles and their permissions
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
<RoleTable />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|