delete all page.routes.ts

This commit is contained in:
2025-11-10 12:25:16 +01:00
parent 7b0aa9879e
commit c9b7207420
5 changed files with 0 additions and 30 deletions

View File

@@ -1,6 +0,0 @@
import { Routes } from '@angular/router';
import { Author } from './author';
export const AUTHOR_ROUTES: Routes = [
{ path: '', component: Author },
]

View File

@@ -1,6 +0,0 @@
import { Routes } from '@angular/router';
import { Book } from './book';
export const BOOK_ROUTES: Routes = [
{ path: '', component: Book },
]

View File

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

View File

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

View File

@@ -1,6 +0,0 @@
import { Routes } from '@angular/router';
import { Welcome } from './welcome';
export const WELCOME_ROUTES: Routes = [
{ path: '', component: Welcome },
];