I have code like this :
<ImageGrid>
<MyCard title="first image" url="https://test.test" image="https://img1.link" ''Button here' />
</ImageGrid>
const MyCard = props => {
return (
<a target="_blank" rel="noopener noreferrer" href={props.url}>
<div
<BasicImage alt={props.title} src={props.image} />
<p>{props.title}</p>
</div>
</a>
)
}
export default MyCard
I want to add button in MyCard to print img1 and button to download img1 thank you