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