From 0421d33cf2c82f363fdfd5e643da8cb41ee27d81 Mon Sep 17 00:00:00 2001 From: fakz9 Date: Sat, 11 May 2024 00:41:50 +0300 Subject: [PATCH] feat: attrs on product --- src/pages/ProductsPage/components/ProductsTable/columns.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pages/ProductsPage/components/ProductsTable/columns.tsx b/src/pages/ProductsPage/components/ProductsTable/columns.tsx index 3762ca9..1413708 100644 --- a/src/pages/ProductsPage/components/ProductsTable/columns.tsx +++ b/src/pages/ProductsPage/components/ProductsTable/columns.tsx @@ -56,6 +56,12 @@ export const useProductsTableColumns = () => { accessorKey: "color", header: "Цвет", enableSorting: false + }, + { + + accessorKey: "size", + header: "Размер", + enableSorting: false } ], []);