@shopgate/pwa-common-commerce
Version:
Commerce library for the Shopgate Connect PWA.
5 lines • 367 B
JavaScript
import{REQUEST_PRODUCT_MEDIA}from"../constants";/**
* Dispatches the REQUEST_PRODUCT_MEDIA action.
* @param {string} productId The ID of the product for which the options are requested.
* @return {Object}
*/var requestProductMedia=function requestProductMedia(productId){return{type:REQUEST_PRODUCT_MEDIA,productId:productId};};export default requestProductMedia;