improved product details page
This commit is contained in:
@@ -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;
|
||||
};
|
||||
Reference in New Issue
Block a user