Last active
October 5, 2019 15:51
-
-
Save cpv123/3e4a1dfa4599cbc169fd4ff47d5fa0f0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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