feat: add categories and manufacturers CRUD components; implement form handling and image upload functionality

This commit is contained in:
Vincent Guillet
2025-11-10 16:29:42 +01:00
parent b84a829a82
commit a849a4dd15
22 changed files with 968 additions and 47 deletions

View File

@@ -0,0 +1,5 @@
export interface Image {
id: string | number;
name : string;
url: string;
}