Sarkis
Sarkis

Reputation: 342

how can I make a clickable image in react without showing the hyperlinks?

this should make a clickable image but apparently the hyperlink is showing next to the image.

<div>
  <a href = {link}><img src= {image} alt= 'icon' />{link}</a>
</div> 

Upvotes: 2

Views: 3486

Answers (1)

Mos&#232; Raguzzini
Mos&#232; Raguzzini

Reputation: 15821

Simply remove {link} after the image tag:

<div>
  <a href = {link}>
    <img src= {image} alt= 'icon' />
  </a>
</div> 

Upvotes: 5

Related Questions