Files
ShopSolution-frontend/src/app/features/dashboard/dashboard.routes.ts
Tizian.Breuch a7d0f44d20 init
2025-09-17 13:02:27 +02:00

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',
},
];