"use client" import { ColumnDef } from "@tanstack/react-table" import { Story } from "@prisma/client" import { ArrowUpDown, MoreHorizontal } from "lucide-react" import { Button } from "@/components/ui/button" export const columns: ColumnDef[] = [ // { // accessorKey: "id", // header: "Id", // enableHiding: true, // }, { accessorKey: "title", header: ({ column }) => { return ( ) }, }, { accessorKey: "word_count", header: "Word Count", }, // { // accessorKey: "deleted", // header: "Deleted" // }, ]