"use client"; import { User2 } from "lucide-react"; import { PaginatedTable } from "../../../_components/PaginatedTable"; import Link from "next/link"; import { ColumnDef } from "@tanstack/react-table"; import { User } from "@repo/db"; import { useSession } from "next-auth/react"; const AdminUserPage = () => { const { data: session } = useSession(); return ( <> (
), }, ] as ColumnDef[] } // Define the columns for the user table leftOfSearch={

Benutzer

} /> ); }; AdminUserPage.displayName = "AdminUserPage"; export default AdminUserPage;