@shopgate/pwa-common-commerce
Version:
Commerce library for the Shopgate Connect PWA.
12 lines (11 loc) • 296 B
JavaScript
import { REQUEST_REVIEWS } from "../constants";
/**
* Dispatches the REQUEST_REVIEWS action.
* @param {string} hash Generated hash.
* @returns {Object} The REQUEST_PRODUCT_REVIEWS action.
*/
const requestReviews = hash => ({
type: REQUEST_REVIEWS,
hash
});
export default requestReviews;