From 8df5da8f529c0879d9dc32231273e33a9de1376f Mon Sep 17 00:00:00 2001 From: jhoniernem Date: Wed, 27 Sep 2023 10:28:50 -0500 Subject: [PATCH] Create type category --- src/types/products.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/types/products.d.ts b/src/types/products.d.ts index 37e8799..33c364d 100644 --- a/src/types/products.d.ts +++ b/src/types/products.d.ts @@ -26,4 +26,9 @@ export interface ProductCardProps { price: number; offer: number; imageSrc: string; +} + +export type CategoryProps = { + image: StaticImageData[]; + name: string; } \ No newline at end of file