Added text to card to show book author
This commit is contained in:
parent
df5a3e4d37
commit
a7a0ce8c80
|
@ -24,6 +24,9 @@ export function Home(props) {
|
||||||
<ItemImage source={ book.cover_image} />
|
<ItemImage source={ book.cover_image} />
|
||||||
<Card.Body>
|
<Card.Body>
|
||||||
<Card.Title>{ book.book_title }</Card.Title>
|
<Card.Title>{ book.book_title }</Card.Title>
|
||||||
|
<Card.Text>
|
||||||
|
By {book.author}
|
||||||
|
</Card.Text>
|
||||||
</Card.Body>
|
</Card.Body>
|
||||||
</Card>
|
</Card>
|
||||||
</Col>
|
</Col>
|
||||||
|
|
Loading…
Reference in New Issue