16 lines
285 B
JavaScript
16 lines
285 B
JavaScript
import { modernChallenges, map, challenges } from './challenges';
|
|
import NotFound from '../components/NotFound/index.jsx';
|
|
|
|
export default {
|
|
path: '/:lang',
|
|
childRoutes: [
|
|
challenges,
|
|
modernChallenges,
|
|
map,
|
|
{
|
|
path: '*',
|
|
component: NotFound
|
|
}
|
|
]
|
|
};
|