import PropTypes from "prop-types" import React from "react" import StarRatings from 'react-star-ratings'; const BookCard = ({ book }) => (
Sunset in the mountains
{ book.title }
{ book.year }

{ book.author }

{book.category}
) BookCard.propTypes = { siteTitle: PropTypes.object, } BookCard.defaultProps = { book:{}, } export default BookCard