UNPKG

@shopgate/pwa-common-commerce

Version:

Commerce library for the Shopgate Connect PWA.

5 lines 394 B
import{REQUEST_PRODUCT_IMAGES}from"../constants";/** * Dispatches the REQUEST_PRODUCT_IMAGES action. * @param {string} productId The ID of the product to request the images. * @return {Object} The REQUEST_PRODUCT_IMAGES action. */var requestProductImages=function requestProductImages(productId){return{type:REQUEST_PRODUCT_IMAGES,productId:productId};};export default requestProductImages;