@shopgate/engage
Version:
Shopgate's ENGAGE library.
6 lines • 495 B
JavaScript
import{connect}from'react-redux';import{getProductDiscount}from'@shopgate/pwa-common-commerce/product/selectors/product';/**
* Maps the contents of the state to the component props.
* @param {Object} state The current application state.
* @param {Object} props The current component props.
* @return {Object} The extended component props.
*/var mapStateToProps=function mapStateToProps(state,props){return{discount:getProductDiscount(state,props)};};export default connect(mapStateToProps);