othr
This commit is contained in:
12
src/pages/ClientsPage/components/ClientsTable/columns.tsx
Normal file
12
src/pages/ClientsPage/components/ClientsTable/columns.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import {Client} from "../../../../types/Client.ts";
|
||||
|
||||
type Column = {
|
||||
accessorKey: keyof Client;
|
||||
header: string;
|
||||
}
|
||||
export const columns: Column[] = [
|
||||
{
|
||||
accessorKey: 'name',
|
||||
header: 'Название'
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user