redux persistor code example

Example 1: redux-persist

// configureStore.js import { createStore } from 'redux'import { persistStore, persistReducer } from 'redux-persist'import storage from 'redux-persist/lib/storage' // defaults to localStorage for web import rootReducer from './reducers' const persistConfig = {  key: 'root',  storage,} const persistedReducer = persistReducer(persistConfig, rootReducer) export default () => {  let store = createStore(persistedReducer)  let persistor = persistStore(store)  return { store, persistor }}

Example 2: prevent specific state redux-persist

// backlist your reducer, 
combineReducer({
	isLoggingIn,
	...
})

const persistConfig = {
  key: 'auth',
  storage: storage,
  blacklist: ['isLoggingIn']
};