react-logo/frontend/src/sagas/root.js

8 lines
120 B
JavaScript
Raw Normal View History

2020-02-04 17:20:39 +01:00
import { all, takeLatest } from 'redux-saga/effects';
export default function* rootSaga() {
yield all([
2020-02-17 22:28:57 +01:00
2020-02-04 17:20:39 +01:00
]);
}