This commit is contained in:
2024-03-17 03:39:38 +03:00
parent e2962f3be2
commit cc14105276
24 changed files with 4218 additions and 42 deletions

View 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: 'Название'
}
]