UNPKG

@shopgate/engage

Version:
13 lines (12 loc) 469 B
import { connect } from 'react-redux'; import { getProduct } 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 component props. * @return {Object} The extended component props. */ const mapStateToProps = (state, props) => ({ product: getProduct(state, props) }); export default connect(mapStateToProps);