UNPKG

@shopgate/pwa-common-commerce

Version:

Commerce library for the Shopgate Connect PWA.

5 lines 290 B
import{RECEIVE_CART}from"../constants";/** * Creates the dispatched RECEIVE_CART action object * @param {Object} cart The cart data * @return {Object} The RECEIVE_CART action. */var receiveCart=function receiveCart(cart){return{type:RECEIVE_CART,cart:cart};};export default receiveCart;