Skip to content

Instantly share code, notes, and snippets.

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