spee.ch/react/sagas/index.js
2018-02-06 21:55:04 -08:00

8 lines
179 B
JavaScript

import { all } from 'redux-saga/effects';
import { watchFileIsRequested } from './show';
export default function* rootSaga () {
yield all([
watchFileIsRequested(),
]);
}