Update frontend to allow categories

This commit is contained in:
g
2025-02-14 15:37:50 +00:00
parent 9c94b89302
commit 6bcbf5a829
11 changed files with 355 additions and 79 deletions

5
models/categories.ts Normal file
View File

@@ -0,0 +1,5 @@
export interface Category {
_id: string;
name: string;
parentId?: string
}