improved product details page

This commit is contained in:
2026-05-27 18:07:56 +02:00
parent 8ac83520a9
commit 11b490b2e5
5 changed files with 348 additions and 30 deletions
+22
View File
@@ -0,0 +1,22 @@
export interface productDetailsInterface {
amount: number;
bottling_date: string;
description: string;
expiry_date: string;
name: string;
picture: string | null;
price: string;
storage_location_name: string;
storage_location_uuid: string;
uuid: string;
}
export type ProductFormValues = {
amount: number;
bottling_date: string;
description: string;
expiry_date: string;
name: string;
price: string;
storage_location_uuid: string;
};