mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-29 05:00:43 +10:00
9 lines
263 B
JavaScript
9 lines
263 B
JavaScript
import { watchAuthInfo, watchAuth } from './ducks/Auth.duck';
|
|
import { watchSdk } from './ducks/sdk.duck';
|
|
|
|
const createRootSaga = sdk =>
|
|
function* rootSaga() {
|
|
yield [watchAuthInfo(sdk), watchAuth(sdk), watchSdk(sdk)];
|
|
};
|
|
|
|
export default createRootSaga;
|