Files
library-frontend/src/app/pages/user/user.routes.ts
2025-11-07 12:35:11 +01:00

7 lines
148 B
TypeScript

import { Routes } from '@angular/router';
import { User } from './user';
export const USER_ROUTES: Routes = [
{ path: '', component: User },
]