Import image in React JS
Below are various ways of importing an image in React JS
Add image to your /src directory then import image and load like below
import star from './star.jpg';
//In your const or function
<img src={star} alt="Girl in a jacket" width="50" height="50"...
blog.azcodez.com1 min read