1
0
This repository has been archived on 2026-06-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MSE-PI-E2EEDA-Plein-de-eeee…/ui/src/app/app.routes.ts
2026-04-15 19:51:44 +02:00

28 lines
618 B
TypeScript

import { Routes } from '@angular/router';
export const routes: Routes = [
{
path: '',
redirectTo: '/dashboard',
pathMatch: 'full',
},
{
path: 'dashboard',
loadComponent: () =>
import('./components/room-map/room-map.component').then(m => m.RoomMapComponent),
title: 'Dashboard - PI_E2EEDA',
},
{
path: 'room/:id',
loadComponent: () =>
import('./components/room-details-panel/room-details-panel.component').then(
m => m.RoomDetailsPanelComponent
),
title: 'Room Details - PI_E2EEDA',
},
{
path: '**',
redirectTo: '/dashboard',
},
];