spee.ch/react/sagas/index.js

10 lines
229 B
JavaScript
Raw Normal View History

2018-02-07 06:55:04 +01:00
import { all } from 'redux-saga/effects';
2018-02-07 22:26:07 +01:00
import { watchNewAssetRequest, watchFileIsRequested } from './show';
2018-02-07 04:00:52 +01:00
export default function* rootSaga () {
yield all([
2018-02-07 22:26:07 +01:00
watchNewAssetRequest(),
2018-02-07 06:55:04 +01:00
watchFileIsRequested(),
2018-02-07 04:00:52 +01:00
]);
}