From 42ae03ed99ad244c787d494e4aa594c373fe8f50 Mon Sep 17 00:00:00 2001 From: Chhakuli Date: Sat, 27 May 2023 19:46:09 +0530 Subject: [PATCH] chore: Export of new constant & wishlistServices --- src/utils/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/utils/index.js b/src/utils/index.js index e3b64b6..40f5db2 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -17,9 +17,15 @@ export { FILTER_BY_SECTION, FILTER_BY_CATEGORY, CLEAR_FILTERS, + SET_WISHLIST, ADD_TO_WISHLIST, REMOVE_FROM_WISHLIST, ADD_TO_CART, REMOVE_FROM_CART, } from "./constants"; export { loginService, signupService } from "./authServices"; +export { + getWishlist, + addToWishlist, + removeFromWishlist, +} from "./wishlistServices";