From 359276c3eab5faf718489d0e0cbedee988902b9b Mon Sep 17 00:00:00 2001 From: Pablo Date: Thu, 7 Apr 2022 00:10:08 +0200 Subject: [PATCH] Add ProductCategories enum --- webapp/src/shared/shareddtypes.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/webapp/src/shared/shareddtypes.ts b/webapp/src/shared/shareddtypes.ts index 2b8dec41..17ae53da 100644 --- a/webapp/src/shared/shareddtypes.ts +++ b/webapp/src/shared/shareddtypes.ts @@ -19,6 +19,13 @@ export type Product = { category: string; }; +export const ProductCategories = { + Clothes: "Clothes", + Decoration: "Decoration", + Electronics: "Electronics", + Misccellaneous: "Miscellaneous", +}; + export type NotificationType = { severity: AlertColor; message: string;