Add learn button to navbar

This commit is contained in:
Berkeley Martinez
2015-11-19 22:45:31 -08:00
parent 6f62868f44
commit dfa5acde60
5 changed files with 61 additions and 15 deletions

View File

@@ -1,10 +1,15 @@
import Jobs from './Jobs';
import Hikes from './Hikes';
import NotFound from '../components/NotFound/index.jsx';
export default {
path: '/',
childRoutes: [
Jobs,
Hikes
Hikes,
{
path: '*',
component: NotFound
}
]
};