"use client"; import { DatabaseBackupIcon } from "lucide-react"; import { PaginatedTable } from "../../../_components/PaginatedTable"; import Link from "next/link"; import { ColumnDef } from "@tanstack/react-table"; import { Keyword, Prisma } from "@repo/db"; export default () => { return ( <> ({ OR: [ { title: { contains: search, mode: "insensitive" } }, { description: { contains: search, mode: "insensitive" } }, ], }) as Prisma.ChangelogWhereInput } columns={ [ { header: "Title", accessorKey: "title", }, { header: "Aktionen", cell: ({ row }) => (
), }, ] as ColumnDef[] } leftOfSearch={ Changelogs } rightOfSearch={

} /> ); };