how do you get an image link from a json to render in a react app?

You can use an img tag to render user avatar,

 <td>
  <img src={user.avatar} />
 </td>

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top