0

How can I show images from json file in localhost in React Application? I'm tryig this below one but it is not working.

json file:

{
  "img":"images/img-filename.png"
}

image is located at src/images/img-filename.png

In React app, image path is displaying: images/img-filename.png

Ali
  • 1
  • 2

1 Answers1

0

Images from src folder can be displayed in React component by:-

<img height="32" src="../images/img-filename.png" />

../ is to go one folder out. I hope it helps.

Engineer
  • 1,243
  • 11
  • 18