UNPKG

@shopgate/engage

Version:
7 lines 431 B
import{connect}from'react-redux';import{getHasDirectShipItems}from'@shopgate/engage/checkout/selectors/order';/** * @returns {Function} */function makeMapStateToProps(){/** * @param {Object} state The application state. * @param {Object} props The component props * @returns {Object} */return function(state){return{orderHasDirectShipItems:getHasDirectShipItems(state)};};}export default connect(makeMapStateToProps);