mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
30 lines
1.0 KiB
TypeScript
30 lines
1.0 KiB
TypeScript
import {UserWithAccounts} from "@/db/schema/02_user";
|
|
import {Card, CardContent, CardDescription, CardHeader, CardTitle} from "@/components/ui/card";
|
|
import {DataTable} from "@/components/wrappers/common/table/data-table";
|
|
import {usersColumnsAdmin} from "@/components/wrappers/dashboard/admin/users/columns-users";
|
|
|
|
export type AdminUsersTableProps = {
|
|
users: UserWithAccounts[];
|
|
|
|
};
|
|
|
|
export const AdminUsersTable = (props: AdminUsersTableProps) => {
|
|
const {users} = props;
|
|
return (
|
|
<div className="flex flex-col gap-y-4 h-full py-4">
|
|
<Card className="h-full ">
|
|
<CardHeader>
|
|
<CardTitle>Active users</CardTitle>
|
|
<CardDescription>Manage your users</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="h-full">
|
|
<DataTable
|
|
enableSelect={false}
|
|
columns={usersColumnsAdmin}
|
|
data={users}/>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
};
|