Skip to content

Instantly share code, notes, and snippets.

@toruticas
Created May 27, 2019 02:19
Show Gist options
  • Save toruticas/159c5b1bdc2c817fbf7eb35a56de63b7 to your computer and use it in GitHub Desktop.
Save toruticas/159c5b1bdc2c817fbf7eb35a56de63b7 to your computer and use it in GitHub Desktop.
Redux Architecture Example (selectors)
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