@shopgate/pwa-common-commerce
Version:
Commerce library for the Shopgate Connect PWA.
5 lines • 333 B
JavaScript
import{SET_PRODUCT_ID}from"../constants";/**
* Creates the dispatched SET_PRODUCT_ID action object.
* @param {string|null} productId The product id.
* @returns {Object} The dispatched action object.
*/var setProductId=function setProductId(productId){return{type:SET_PRODUCT_ID,productId:productId};};export default setProductId;