Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const mapStateToProps = state => ({
count: getCartProductDisplayCount(state),
});
const mapStateToProps = state => ({
cartDisplayAmount: getCartProductDisplayCount(state),
});
const mapStateToProps = state => ({
count: getCartProductDisplayCount(state),
});
const mapStateToProps = state => ({
isLoading: isProductPageLoading(state),
cartProductCount: getCartProductDisplayCount(state),
});
const mapStateToProps = state => ({
count: getCartProductDisplayCount(state),
});