freeCodeCamp/common/app/routes/index.js

16 lines
280 B
JavaScript
Raw Normal View History

2016-06-09 23:02:51 +00:00
import { modernChallenges, map, challenges } from './challenges';
2015-11-20 06:45:31 +00:00
import NotFound from '../components/NotFound/index.jsx';
2015-06-18 04:04:28 +00:00
export default {
path: '/',
2015-09-14 19:12:31 +00:00
childRoutes: [
2016-03-21 22:39:45 +00:00
challenges,
2016-06-09 23:02:51 +00:00
modernChallenges,
2016-03-21 22:39:45 +00:00
map,
2015-11-20 06:45:31 +00:00
{
path: '*',
component: NotFound
}
2015-09-14 19:12:31 +00:00
]
2015-06-18 04:04:28 +00:00
};