feat(web): add Description column

This commit is contained in:
Collin Barrett 2025-06-23 20:17:50 -05:00
parent 758915d70c
commit b14c0c2255

View file

@ -4,12 +4,16 @@ import { ColumnDef } from "@tanstack/react-table";
export type FilterList = {
name: string;
description: string;
};
export const columns: ColumnDef<FilterList>[] = [
{
accessorKey: "name",
header: "Name",
cell: (info) => info.getValue(),
},
{
accessorKey: "description",
header: "Description",
},
];