10 lines
160 B
JavaScript
10 lines
160 B
JavaScript
![]() |
import { all } from 'redux-saga/effects';
|
||
|
|
||
|
import { sagas as appSagas } from './';
|
||
|
|
||
|
export default function* rootSaga() {
|
||
|
yield all([
|
||
|
...appSagas
|
||
|
]);
|
||
|
}
|