-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooks.js
21 lines (19 loc) · 1.4 KB
/
books.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Mock data
const books = [
{ id: "1", title: "Harry Potter", genre: "Fantasy", price: 29.99, authorId: "1" },
{ id: "2", title: "Game of Thrones", genre: "Fantasy", price: 39.99, authorId: "2" },
{ id: "3", title: "The Lord of the Rings", genre: "Fantasy", price: 49.99, authorId: "3" },
{ id: "4", title: "Murder on the Orient Express", genre: "Mystery", price: 19.99, authorId: "4" },
{ id: "5", title: "Foundation", genre: "Science Fiction", price: 24.99, authorId: "5" },
{ id: "6", title: "Pride and Prejudice", genre: "Romance", price: 14.99, authorId: "6" },
{ id: "7", title: "Angels and Demons", genre: "Thriller", price: 19.99, authorId: "7" },
{ id: "8", title: "Norwegian Wood", genre: "Literary Fiction", price: 18.99, authorId: "8" },
{ id: "9", title: "The Hobbit", genre: "Fantasy", price: 29.99, authorId: "3" },
{ id: "10", title: "The Da Vinci Code", genre: "Thriller", price: 22.99, authorId: "7" },
{ id: "11", title: "A Clash of Kings", genre: "Fantasy", price: 34.99, authorId: "2" },
{ id: "12", title: "The Casual Vacancy", genre: "Drama", price: 24.99, authorId: "1" },
{ id: "13", title: "Emma", genre: "Romance", price: 12.99, authorId: "6" },
{ id: "14", title: "The Silmarillion", genre: "Fantasy", price: 35.99, authorId: "3" },
{ id: "15", title: "The Mysterious Affair at Styles", genre: "Mystery", price: 15.99, authorId: "4" },
];
module.exports = books;