@shopgate/pwa-common-commerce
Version:
Commerce library for the Shopgate Connect PWA.
10 lines (9 loc) • 329 B
JavaScript
import { SUCCESS_UPDATE_PRODUCTS_IN_CART } from "../constants";
/**
* Creates the dispatched SUCCESS_UPDATE_PRODUCTS_IN_CART action object.
* @returns {Object} The dispatched action object.
*/
const successUpdateProductsInCart = () => ({
type: SUCCESS_UPDATE_PRODUCTS_IN_CART
});
export default successUpdateProductsInCart;