Files
freeCodeCamp/common/app/routes/Jobs/index.js

19 lines
282 B
JavaScript
Raw Normal View History

import Jobs from './components/Jobs.jsx';
2015-06-17 21:04:28 -07:00
/*
* show: /jobs
* showOne: /jobs/:id
* edit /jobs/:id
* delete /jobs/:id
* createOne /jobs/new
*/
export default {
path: '/jobs/(:jobId)',
getComponents(cb) {
setTimeout(() => {
cb(null, Jobs);
}, 0);
2015-06-17 21:04:28 -07:00
}
};