created routes pages
This commit is contained in:
6
src/app/pages/author/author.routes.ts
Normal file
6
src/app/pages/author/author.routes.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { Author } from './author';
|
||||
|
||||
export const AUTHOR_ROUTES: Routes = [
|
||||
{ path: '', component: Author },
|
||||
]
|
||||
6
src/app/pages/book/book.routes.ts
Normal file
6
src/app/pages/book/book.routes.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { Book } from './book';
|
||||
|
||||
export const BOOK_ROUTES: Routes = [
|
||||
{ path: '', component: Book },
|
||||
]
|
||||
6
src/app/pages/loan/loan.routes.ts
Normal file
6
src/app/pages/loan/loan.routes.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { Loan } from './loan';
|
||||
|
||||
export const LOAN_ROUTES: Routes = [
|
||||
{ path: '', component: Loan },
|
||||
]
|
||||
6
src/app/pages/user/user.routes.ts
Normal file
6
src/app/pages/user/user.routes.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { User } from './user';
|
||||
|
||||
export const USER_ROUTES: Routes = [
|
||||
{ path: '', component: User },
|
||||
]
|
||||
Reference in New Issue
Block a user