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