2024-12-18 08:30:10 +01:00
|
|
|
import { Routes } from '@angular/router';
|
2024-12-18 11:22:04 +01:00
|
|
|
import { LoginViewComponent } from './components/login-view/login-view.component';
|
|
|
|
import { MitarbeiterverwaltungViewComponent } from './components/mitarbeiterverwaltung-view/mitarbeiterverwaltung-view.component';
|
|
|
|
import { EmployeeDetailComponent } from './components/employee-detail/employee-detail.component';
|
2024-12-18 08:30:10 +01:00
|
|
|
|
2024-12-18 11:22:04 +01:00
|
|
|
export const routes: Routes = [
|
|
|
|
{
|
|
|
|
path: "",
|
|
|
|
component: LoginViewComponent,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "mitarbeiter",
|
|
|
|
component: MitarbeiterverwaltungViewComponent,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "mitarbeiterdetails",
|
|
|
|
component: EmployeeDetailComponent,
|
|
|
|
}
|
|
|
|
];
|