UNPKG

@shopgate/engage

Version:
3 lines 437 B
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);