2019-09-13 09:56:11 +00:00
|
|
|
import { all, fork, spawn } from "redux-saga/effects"
|
2019-03-30 12:30:42 +00:00
|
|
|
import { watchFetchPage } from "../sagas/PageSagas"
|
2019-08-21 12:49:16 +00:00
|
|
|
import { fetchWidgetCardsSaga } from './WidgetCardsPaneSagas'
|
2019-09-13 09:56:11 +00:00
|
|
|
import { watchExecuteAction } from './ActionSagas';
|
2019-03-26 15:28:24 +00:00
|
|
|
|
|
|
|
|
export function* rootSaga() {
|
2019-09-13 09:56:11 +00:00
|
|
|
yield all([ spawn(watchFetchPage), spawn(fetchWidgetCardsSaga), spawn(watchExecuteAction)])
|
2019-03-26 15:28:24 +00:00
|
|
|
}
|