What is the idiomatic way of starting rootSaga?
问题 redux-saga project has been existing for a pretty long time now, but still there are a lot of confusing things about this library. And one of them is: how to start your rootSaga. For example, in the beginner tutorial rootSaga is started by yeilding an array of sagas. Like this export default function* rootSaga() { yield [ helloSaga(), watchIncrementAsync() ] } However, in the using saga helpers section rootSaga consists of two forked sagas. Like this: export default function* rootSaga() {