2019-09-16 08:08:03 +00:00
|
|
|
import { all, spawn } from "redux-saga/effects";
|
2019-09-17 15:09:55 +00:00
|
|
|
import pageSagas from "../sagas/PageSagas";
|
2019-09-16 08:08:03 +00:00
|
|
|
import { fetchWidgetCardsSaga } from "./WidgetCardsPaneSagas";
|
2019-09-17 10:11:50 +00:00
|
|
|
import { watchExecuteActionSaga } from "./ActionSagas";
|
2019-03-26 15:28:24 +00:00
|
|
|
|
|
|
|
|
export function* rootSaga() {
|
2019-09-16 08:08:03 +00:00
|
|
|
yield all([
|
2019-09-17 15:09:55 +00:00
|
|
|
spawn(pageSagas),
|
2019-09-16 08:08:03 +00:00
|
|
|
spawn(fetchWidgetCardsSaga),
|
2019-09-17 10:11:50 +00:00
|
|
|
spawn(watchExecuteActionSaga),
|
2019-09-16 08:08:03 +00:00
|
|
|
]);
|
2019-03-26 15:28:24 +00:00
|
|
|
}
|