| | |
| | | import { Exception403Component } from './exception/403.component'; |
| | | import { Exception404Component } from './exception/404.component'; |
| | | import { Exception500Component } from './exception/500.component'; |
| | | import { HomePageComponent } from './home-page/home-page.component'; |
| | | |
| | | const routes: Routes = [ |
| | | { |
| | |
| | | { path: '', redirectTo: 'dashboard/v1', pathMatch: 'full' }, |
| | | { path: 'dashboard', redirectTo: 'dashboard/v1', pathMatch: 'full' }, |
| | | { path: 'dashboard/v1', component: DashboardV1Component }, |
| | | { path: 'home-page', component: HomePageComponent }, |
| | | { path: 'dashboard/analysis', component: DashboardAnalysisComponent }, |
| | | { path: 'dashboard/monitor', component: DashboardMonitorComponent }, |
| | | { path: 'dashboard/workplace', component: DashboardWorkplaceComponent }, |