UNPKG

@shopgate/engage

Version:
5 lines 421 B
import{connect}from'react-redux';import{getOrderableStatus}from'@shopgate/pwa-common-commerce/cart/selectors';/** * Maps the contents of the state to the component props. * @param {Object} state The current application state. * @return {Object} The extended component props. */var mapStateToProps=function mapStateToProps(state){return{isOrderable:getOrderableStatus(state)};};export default connect(mapStateToProps);