UNPKG

@shopgate/pwa-common-commerce

Version:

Commerce library for the Shopgate Connect PWA.

6 lines 425 B
import{RECEIVE_USER_REVIEW}from"../constants";/** * Dispatches the RECEIVE_USER_REVIEW action. * @param {string} productId The ID of the product. * @param {Object} review The received review data. * @returns {Object} The RECEIVE_USER_REVIEW action. */var receiveUserReview=function receiveUserReview(productId,review){return{type:RECEIVE_USER_REVIEW,productId:productId,review:review};};export default receiveUserReview;