This commit is contained in:
rgrgogu
2026-05-07 23:35:31 +08:00
parent 42b842c480
commit ca6eae1d56
35 changed files with 1637 additions and 207 deletions
@@ -1,11 +1,25 @@
import React from 'react'
import { House } from "lucide-react";
import AppBreadcrumb from "@/components/generic/Breadcrumb/AppBreadcrumb";
import GroupTable from "../../components/user_groups/GroupTable";
export default function GroupList() {
const items = [
{ label: "Home", icon: <House className="size-4" />, to: `/admin/users` },
{ label: "User Groups" },
]
const GroupList = () => {
return (
<div>
GroupList
</div>
)
}
<section className="bg-muted/60 h-full">
<div className="lg:container lg:mx-auto lg:px-0 flex flex-col items-start px-4">
<div className="flex flex-col gap-2 my-6 ">
<AppBreadcrumb items={items} />
</div>
export default GroupList
<div className="w-full">
<GroupTable />
</div>
</div>
</section>
)
}