dashboard

This commit is contained in:
Bastian Wagner
2024-09-04 14:14:20 +02:00
parent bf577ed5e8
commit 0c1c545e49
17 changed files with 225 additions and 14 deletions

View File

@@ -1,9 +1,11 @@
import { Routes } from '@angular/router';
import { LoginComponent } from './auth/login/login.component';
import { RegisterComponent } from './auth/register/register.component';
import { DashboardComponent } from './dashboard/dashboard.component';
export const routes: Routes = [
{ path: 'login', component: LoginComponent },
{ path: 'register', component: RegisterComponent },
{ path: 'dashboard', component: DashboardComponent },
{ path: '', component: LoginComponent },
];