Co-authored-by: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com> Reviewed-on: #1
24 lines
679 B
JavaScript
24 lines
679 B
JavaScript
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 (
|
|
<div className={style.item}>
|
|
<Link href={href}>
|
|
<div
|
|
className={style.thumb} style={{
|
|
backgroundImage: `url(${thumbnailUrl ?? '/img/book-placeholder.jpg'})`
|
|
}}
|
|
/>
|
|
</Link>
|
|
<div>
|
|
<h2 className={style.heading}>
|
|
<Link href={href}>{title}</Link>
|
|
</h2>
|
|
<p className={style.author}>{author}</p>
|
|
<p>{tags}</p>
|
|
{/* <p>{stars}/5</p> */}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|