Files
freeCodeCamp/common/app/routes/index.js
Berkeley Martinez 4a043e151e Move Video challenges under challenges dir
Remove old hikes components
Remove unused jobs stuff
2016-07-28 23:39:17 -07:00

16 lines
280 B
JavaScript

import { modernChallenges, map, challenges } from './challenges';
import NotFound from '../components/NotFound/index.jsx';
export default {
path: '/',
childRoutes: [
challenges,
modernChallenges,
map,
{
path: '*',
component: NotFound
}
]
};