diff --git a/src/assets/index.js b/src/assets/index.js index 3118c91..77caf39 100644 --- a/src/assets/index.js +++ b/src/assets/index.js @@ -21,4 +21,5 @@ export { ErrorOutlineOutlinedIcon, RemoveRedEyeOutlinedIcon, VisibilityOffOutlinedIcon, + RemoveShoppingCartOutlinedIcon, } from "./icons/materialIcons"; diff --git a/src/utils/index.js b/src/utils/index.js index 40f5db2..aec7e3b 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -20,8 +20,11 @@ export { SET_WISHLIST, ADD_TO_WISHLIST, REMOVE_FROM_WISHLIST, + SET_CART, ADD_TO_CART, REMOVE_FROM_CART, + LOGIN, + LOGOUT, } from "./constants"; export { loginService, signupService } from "./authServices"; export { @@ -29,3 +32,5 @@ export { addToWishlist, removeFromWishlist, } from "./wishlistServices"; +export { getCart, addToCart, removeFromCart } from "./cartServices"; +export { ScrollToTop } from "./ScrollToTop";