//two way to use image in react
Option 1: Put the image in the public directory
public/images/thing.jpg, you could display that image this way:
<img src="images/logo.jpg" />
Option 2: import the image into the component
import Logo from “./logo.jpg”;
<img src={Logo}/>