spee.ch/react/sagas/index.js

9 lines
179 B
JavaScript
Raw Normal View History

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