Administration/src/app/app.routes.ts

5 lines
214 B
TypeScript
Raw Normal View History

2025-02-02 15:48:46 +01:00
import { Routes } from '@angular/router';
2025-02-02 19:59:34 +01:00
import { DashboardComponent } from '@app/views/dashboard/dashboard.component';
2025-02-02 15:48:46 +01:00
2025-02-02 19:59:34 +01:00
export const routes: Routes = [{ path: '', component: DashboardComponent, title: 'Home' }];