UNPKG

@shopgate/pwa-common-commerce

Version:

Commerce library for the Shopgate Connect PWA.

5 lines 415 B
import{SET_PRODUCT_VARIANT_ID}from"../constants";/** * Creates the dispatched SET_PRODUCT_VARIANTS_ID action object. * @param {string|null} productVariantId The product variant id. * @returns {Object} The dispatched action object. */var setProductVariantId=function setProductVariantId(productVariantId){return{type:SET_PRODUCT_VARIANT_ID,productVariantId:productVariantId};};export default setProductVariantId;