Created
May 27, 2019 02:22
-
-
Save toruticas/d234cae23492838eea7f502e444472c0 to your computer and use it in GitHub Desktop.
Redux Architecture Example (effects)
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 localStorageSync = () => (_, getState) => { | |
const todos = getState().todos.toJS(); | |
localStorage.setItem('redux-todos', JSON.stringify(todos)); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment