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

7 lines
148 B
TypeScript

import { Routes } from '@angular/router';
import { Loan } from './loan';
export const LOAN_ROUTES: Routes = [
{ path: '', component: Loan },
]