import style from './BookListItem.module.css' import Link from 'next/link' export default function BookListItem ({ href, title, author, stars, readDate, url, thumbnailUrl, tags, review }) { return (

{title}

{author}

{tags}

{/*

{stars}/5

*/}
) }