Files
freeCodeCamp/common/app/routes/Jobs/redux/fetch-jobs-saga.js
2016-03-03 17:53:33 -08:00

8 lines
204 B
JavaScript

import { fetchJobs, fetchJobsCompleted } from './types';
export default ({ services }) => ({ dispatch, getState }) => next => {
return function fetchJobsSaga(action) {
return next(action);
};
};