const BookDetail = ({ book }) => { return (
Book Cover
Title: {book.title}
Author: {book.author}
ISBN: {book.ISBN}
Publisher: {book.publisher}
Published Date: {book.publishedDate}
Description: {book.description}
Price: {book.price}
); }; export default BookDetail;