--- type Book = { id: number; title: string; authors: string; cover_url: string | null; notes: string | null; status: "read" | "reading" | "want"; }; const { book } = Astro.props as { book: Book }; ---
{book.cover_url ? ( {`Cover ) : (
)}
{book.title} {book.authors} {book.notes && ( {book.notes} )}