mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-13 06:13:03 -05:00
fix(test): move all test apps
This commit is contained in:
17
apps/testing/router-outlet/src/app/book.model.ts
Normal file
17
apps/testing/router-outlet/src/app/book.model.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
export interface Book {
|
||||
name: string;
|
||||
author: string;
|
||||
}
|
||||
|
||||
export const availableBooks = [
|
||||
{ name: 'To Kill a Mockingbird', author: 'Harper Lee' },
|
||||
{ name: '1984', author: 'George Orwell' },
|
||||
{ name: 'The Catcher in the Rye', author: 'J.D. Salinger' },
|
||||
{ name: 'The Great Gats', author: 'F. Scott Fitzgerald' },
|
||||
{ name: 'Pride and Prejudice', author: 'Jane Austen' },
|
||||
{ name: 'The Hobbit', author: 'J.R.R. Tolkien' },
|
||||
{ name: 'The Lord of the Rings', author: 'J.R.R. Tolkien' },
|
||||
{ name: "Harry Potter and the Philosopher's Stone", author: 'J.K. Rowling' },
|
||||
{ name: 'The Hunger Games', author: 'Suzanne Collins' },
|
||||
{ name: 'Animal Farm', author: 'George Orwell' },
|
||||
];
|
||||
Reference in New Issue
Block a user