@shopgate/engage
Version:
Shopgate's ENGAGE library.
3 lines • 336 B
JavaScript
import{connect}from'react-redux';import{makeGetProductProperties}from"../../selectors/product";/**
* @return {Function}
*/function makeMapStateToProps(){var getProductProperties=makeGetProductProperties();return function(state,props){return{properties:getProductProperties(state,props)};};}export default connect(makeMapStateToProps);