Png image is not showing in website while importing it in img src line of xml code inside react.js.
I used
<img src={require ("../../../Assets/Home/footer-image.png").default} alt=’error loading image’/>
inside xml div in react.js and I was expecting that the image will show in my website. My location is also correct but I’m not getting the result and in website it’s showing error loading image.
2
Answers
Did you tried removing .default at the end of the require ?
<img src={require ("../../../Assets/Home/footer-image.png").default
} alt=’error loading image’/>
I proffer two possible solutions: