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

15 lines
208 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 {
2015-07-25 15:15:59 -07:00
path: 'jobs',
component: Jobs
2015-06-17 21:04:28 -07:00
};