Files
freeCodeCamp/common/app/routes/Jobs/index.js
2015-07-23 15:49:00 -07:00

20 lines
296 B
JavaScript

/*
* show: /jobs
* showOne: /jobs/:id
* edit /jobs/:id
* delete /jobs/:id
* createOne /jobs/new
*/
export default {
path: '/jobs/(:jobId)',
getComponents(cb) {
require.ensure([], require => {
cb(null, [
require('./components/Jobs.jsx')
]);
});
}
};