0
Q:

redux-persist with saga

import { all, fork, take } from 'redux-saga/effects';
import { REHYDRATE } from 'redux-persist/lib/constants';
import { mySagaA, mySagaB, mySagaC } from './mySagas';

function* rootSaga() {
  console.log("Waiting for rehydration")
  yield take(REHYDRATE); // Wait for rehydrate to prevent sagas from running with empty store
  console.log("Rehydrated")
  yield all([
    fork(mySagaA),
    fork(mySagaB),
    fork(mySagaC),
  ]);
}
0

New to Communities?

Join the community