Created
October 10, 2025 00:38
-
-
Save buddycoder-cpu/207b1521a566a052be0df221a164d936 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const books = [ | |
{ | |
id: '1', | |
title: 'Harry Potter', | |
author: 'J.K. Rowling', | |
imageUrl: 'https://upload.wikimedia.org/wikipedia/en/6/6b/Harry_Potter_and_the_Philosopher%27s_Stone_Book_Cover.jpg', | |
}, | |
{ | |
id: '2', | |
title: 'The Hobbit', | |
author: 'J.R.R. Tolkien', | |
imageUrl: 'https://upload.wikimedia.org/wikipedia/en/4/4a/TheHobbit_FirstEdition.jpg', | |
}, | |
{ | |
id: '3', | |
title: '1984', | |
author: 'George Orwell', | |
imageUrl: 'https://upload.wikimedia.org/wikipedia/en/c/c3/1984first.jpg', | |
}, | |
{ | |
id: '4', | |
title: 'Pride and Prejudice', | |
author: 'Jane Austen', | |
imageUrl: 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/PrideAndPrejudiceTitlePage.jpg/440px-PrideAndPrejudiceTitlePage.jpg', | |
}, | |
{ | |
id: '5', | |
title: 'To Kill a Mockingbird', | |
author: 'Harper Lee', | |
imageUrl: 'https://upload.wikimedia.org/wikipedia/en/7/79/To_Kill_a_Mockingbird.JPG', | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment