Last active
October 11, 2019 11:19
-
-
Save cpv123/73557e25454d877fe91995219a46d14d 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
const areStatesEqual = (nextStore, previousStore) => ( | |
nextStore.basketContents === previousStore.basketContents | |
) | |
export default connect(mapStateToProps, null, null, { areStatesEqual })(WrappedComponent) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment