where does the image folder go in react code example
Example 1: showing an image in react js
import image from './path-to-image';
<img src={image} height={100} width={100} />
Example 2: react src images from public folder
<img src={process.env.PUBLIC_URL + '/yourPathHere.jpg'} />