UNPKG

@shopgate/pwa-common-commerce

Version:

Commerce library for the Shopgate Connect PWA.

12 lines (11 loc) 332 B
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. */ const requestUserReview = productId => ({ type: REQUEST_USER_REVIEW, productId }); export default requestUserReview;