Files
freeCodeCamp/common/app/routes/Jobs/index.js
Berkeley Martinez a45863ce87 jobs page rendering
2015-07-25 15:15:59 -07:00

15 lines
208 B
JavaScript

import Jobs from './components/Jobs.jsx';
/*
* show: /jobs
* showOne: /jobs/:id
* edit /jobs/:id
* delete /jobs/:id
* createOne /jobs/new
*/
export default {
path: 'jobs',
component: Jobs
};