This commit is contained in:
Tizian.Breuch
2025-10-10 12:19:04 +02:00
parent 8813dc21ee
commit 4924372087
3 changed files with 33 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
import { Routes } from '@angular/router';
import { UserListComponent } from './user-list/user-list.component';
export const USERS_ROUTES: Routes = [
{
path: '',
component: UserListComponent,
title: '',
},
];