Add Main cast as sub info within card.

This commit is contained in:
Ray 2023-11-14 16:28:27 +00:00 committed by GitHub
parent 6fde426922
commit 1dab4edd4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -25,7 +25,10 @@ export function Home(props) {
<ItemImage source={ movie.cover_image} />
<Card.Body>
<Card.Title>{ movie.movie_title }</Card.Title>
<Card.Title>{ movie.title }</Card.Title>
<Card.Text>
Main Cast: {movie.main_actors}
</Card.Text>
</Card.Body>
</Card>
</Col>