You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
657B

  1. import { Routes } from '@angular/router';
  2. import { HomePageComponent } from './homepage/home-page.component';
  3. import { CentralizedSecurityManagementComponent } from './centralized-security-management/centralized-security-management.component';
  4. import { SecuritySystemDetailsComponent } from './security-system-details/security-system-details.component';
  5. export const homePageRoutes: Routes = [
  6. {
  7. path: '',
  8. component: HomePageComponent,
  9. },
  10. {
  11. path: 'centralized-security-management',
  12. component: CentralizedSecurityManagementComponent,
  13. },
  14. {
  15. path: 'security-system-details',
  16. component: SecuritySystemDetailsComponent,
  17. },
  18. ];