import React from "react"; import "../../common/styles/gallery.css"; import StarRating from "../../common/starRating/StarRating"; import AddToCart from "../../common/AddToCart"; import { Book } from "../bestSellers/BestSellerProductRow"; interface CategoryGalleryBookProps { book: Book; } export class CategoryGalleryBook extends React.Component { render() { if (!this.props.book) return; return (

{`$${this.props.book.price}`}

{`${this.props.book.name}

{this.props.book.name}

); } } export default CategoryGalleryBook;