diff --git a/src/routes.js b/src/routes.js index 3733ac8..ec26cd6 100644 --- a/src/routes.js +++ b/src/routes.js @@ -38,6 +38,7 @@ const User = React.lazy(() => import('./views/Users/User')); // https://github.com/ReactTraining/react-router/tree/master/packages/react-router-config const routes = [ + { path: '/', exact: true, name: 'Home' }, { path: '/dashboard', name: 'Dashboard', component: Dashboard }, { path: '/theme', exact: true, name: 'Theme', component: Colors }, { path: '/theme/colors', name: 'Colors', component: Colors },