Files
freeCodeCamp/common/app/routes/Jobs/components/Actions.js
Berkeley Martinez a8540bee35 add initial react app
2015-06-17 21:04:28 -07:00

16 lines
251 B
JavaScript

import { Actions } from 'thundercats';
export default class JobsActions extends Actions {
constructor() {
super();
}
static displayName = 'JobsActions'
getJob(id) {
return { id };
}
getJobs(params) {
return { params };
}
}