I mapped through the list of Movies(Posters), i have button (watch) on each poster, once you click the button watch it will take you to another component (watch). How do i pass the individual poster props from Poster component to the watch component on button click.
{this.state.Poster.map(poster =>
<Col md="3 " className="" >
<Card className="card-user card-transparent">
<CardImg top src={`/files/${poster.filename}`}></CardImg>
<CardText className="py-3 px-3">
<div className="card-description">
<h6 className="display-5 text-center">{poster.metadata.name}</h6>
<p className="text-center">{poster.metadata.Description}</p>
</div>
</CardText>
<CardFooter>
<div className="button-container py-3"><a href="watch">
<Button className="btn-fill btn-movie " color="primary" >
Watch
</Button></a>
</div>
</CardFooter>
</Card>
</Col>
)}