import { ColumnDef } from "@tanstack/react-table"; import { Link } from "../../../shadcnui"; export const cellUrl = (params: { name: string; title: string }): ColumnDef => { return { id: params.name, accessorKey: params.name, header: params.title, cell: ({ row }) => {row.getValue(params.name)}, enableSorting: false, enableHiding: false, }; };