Files
freeCodeCamp/common/app/routes/Jobs/redux/fetch-jobs-saga.js

8 lines
204 B
JavaScript
Raw Normal View History

2016-02-05 20:48:59 -08:00
import { fetchJobs, fetchJobsCompleted } from './types';
export default ({ services }) => ({ dispatch, getState }) => next => {
return function fetchJobsSaga(action) {
return next(action);
};
};