Search code examples
javascriptreactjstags

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> 

Solution

  • Simply remove {link} after the image tag:

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