Files
freeCodeCamp/common/app/routes/Jobs/flux/Actions.js

12 lines
195 B
JavaScript
Raw Normal View History

import { Actions } from 'thundercats';
export default Actions({
getJob(id) {
return { id };
},
getJobs(params) {
return { params };
}
})
.refs({ displayName: 'JobsActions' });