@shopgate/engage
Version:
Shopgate's ENGAGE library.
13 lines (12 loc) • 446 B
JavaScript
import { connect } from 'react-redux';
import { getProductStock } from '@shopgate/engage/product';
/**
* Maps the contents of the state to the component props.
* @param {Object} state The current application state.
* @param {Object} props The component props.
* @return {Object} The extended component props.
*/
const mapStateToProps = (state, props) => ({
stock: getProductStock(state, props)
});
export default connect(mapStateToProps);