13 lines
409 B
TypeScript
13 lines
409 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { DashboardPageComponent } from './pages/dashboard-page/dashboard-page.component';
|
|
// Importiere dein spezielles Layout für Auth-Seiten und alle Komponenten
|
|
|
|
export const DASHBOARD_ROUTES: Routes = [
|
|
{ path: '', redirectTo: 'home', pathMatch: 'full' },
|
|
{
|
|
path: 'home',
|
|
component: DashboardPageComponent,
|
|
title: 'Dashboard Übersicht',
|
|
},
|
|
];
|