fix(routes): add Home to routes - breadcrumb issue

This commit is contained in:
xidedix 2019-03-25 14:29:54 +01:00
parent ded4437ae1
commit 988b240566

View File

@ -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 },