Skip to content

Instantly share code, notes, and snippets.

@cpv123
Last active October 5, 2019 15:51
Show Gist options
  • Save cpv123/3e4a1dfa4599cbc169fd4ff47d5fa0f0 to your computer and use it in GitHub Desktop.
Save cpv123/3e4a1dfa4599cbc169fd4ff47d5fa0f0 to your computer and use it in GitHub Desktop.
import {
getBasketContents,
getIsAuthenticated,
getIsEligibleForPromo,
} from 'selectors/user'
const mapStateToProps = state => ({
basketContents: getBasketContents(state),
isAuthenticated: getIsAuthenticated(state),
isEligibleForPromo: getIsEligibleForPromo(state),
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment