add storage management features including update functionality and storage listing page

This commit is contained in:
2026-05-27 22:20:12 +02:00
parent 96488a3137
commit b0731b22db
10 changed files with 252 additions and 13 deletions
+8
View File
@@ -20,3 +20,11 @@ export type ProductFormValues = {
price: string;
storage_location_uuid: string;
};
export interface Storage {
name: string;
description: string | null;
created_at: string;
updated_at: string;
uuid: string;
}