Created
May 27, 2019 02:19
-
-
Save toruticas/159c5b1bdc2c817fbf7eb35a56de63b7 to your computer and use it in GitHub Desktop.
Redux Architecture Example (selectors)
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
export const getItems = state => state.get('items'); | |
export const getInputValue = state => state.get('inputValue'); | |
export const getCurrentIndex = state => state.get('currentIndex'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment