created routes pages

This commit is contained in:
2025-11-07 12:35:11 +01:00
parent 4d5f34f39f
commit 03d0afcd06
5 changed files with 39 additions and 3 deletions

View File

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