What is the idiomatic way of starting rootSaga?

How to create rootSaga? According to a core developer of redux-saga [1,2] the idiomatic way to create rootSaga is to use the all Effect Combinator. Also, please note that yielding arrays from sagas is deprecated. Example 1 You could use something like this (+all) import { fork, all } from ‘redux-saga/effects’; import firstSaga from ‘./firstSaga’; … Read more