mencegah redux-persis negara bagian tertentu
// backlist your reducer,
combineReducer({
isLoggingIn,
...
})
const persistConfig = {
key: 'auth',
storage: storage,
blacklist: ['isLoggingIn']
};
Salo Hopeless