35 lines
730 B
TypeScript
35 lines
730 B
TypeScript
import { PartyPopperIcon } from "lucide-react";
|
|
import { PaginatedTable } from "../../../_components/PaginatedTable";
|
|
import Link from "next/link";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<>
|
|
<PaginatedTable
|
|
showEditButton
|
|
prismaModel="event"
|
|
columns={[
|
|
{
|
|
header: "Name",
|
|
accessorKey: "name",
|
|
},
|
|
{
|
|
header: "Versteckt",
|
|
accessorKey: "hidden",
|
|
},
|
|
]}
|
|
leftOfSearch={
|
|
<span className="flex items-center gap-2">
|
|
<PartyPopperIcon className="w-5 h-5" /> Events
|
|
</span>
|
|
}
|
|
rightOfSearch={
|
|
<Link href={"/admin/event/new"}>
|
|
<button className="btn btn-sm btn-outline btn-primary">Erstellen</button>
|
|
</Link>
|
|
}
|
|
/>
|
|
</>
|
|
);
|
|
}
|