@shopgate/engage
Version:
Shopgate's ENGAGE library.
3 lines • 437 B
JavaScript
import{connect}from'react-redux';import{makeGetProductPriceData,makeGetProductMapPrice}from"../../selectors/price";/**
* @return {Function}
*/function makeMapStateToProps(){var getProductPriceData=makeGetProductPriceData();var getProductMapPrice=makeGetProductMapPrice();return function(state,props){return{price:getProductPriceData(state,props),mapPrice:getProductMapPrice(state,props)};};}export default connect(makeMapStateToProps);