@shopgate/engage
Version:
Shopgate's ENGAGE library.
16 lines (14 loc) • 500 B
JavaScript
import { connect } from 'react-redux';
import { fetchProductLocations } from "../../actions";
/**
* @typedef {import('./CartChangeFulfillmentMethod.types').OwnProps} OwnProps
* @typedef {import('./CartChangeFulfillmentMethod.types').DispatchProps} DispatchProps
*/
/**
* @param {Function} dispatch The redux dispatch function.
* @returns {DispatchProps} The extended component props.
*/
const mapDispatchToProps = {
fetchProductLocations
};
export default connect(null, mapDispatchToProps);