Skip to content

Instantly share code, notes, and snippets.

@jwill9999
Created March 6, 2017 22:40
Show Gist options
  • Save jwill9999/cef2b161265edfba6b31af808260fc2f to your computer and use it in GitHub Desktop.
Save jwill9999/cef2b161265edfba6b31af808260fc2f to your computer and use it in GitHub Desktop.
React Local storage
const initialState = (localStorage["redux-store"]) ?
JSON.parse(localStorage["redux-store"]) :
sampleData
const saveState = () =>
localStorage["redux-store"] = JSON.stringify(store.getState())
// createStore here
store.subscribe(saveState)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment