export interface IProductComposition {
    amount: number;
    code: string;
    imageURL: string;
    name: string;
    quantity: number;
    unit: string;
}
