1//if you have images in src folder
2import shoe1 from './img/shoe_01.jpg'
3const Shoe = (e) => {
4 return (
5 <div className="shoe-container">
6 <img src={shoe1} alt=""/>
7 </div>
8 );
9}
10//if you have images in public folder:
11//will look in folder /public/img/shoe_01.jpg
12const Shoe = (e) => {
13 return (
14 <div className="shoe-container">
15 <img src="/img/shoe_01.jpg" alt=""/>
16 </div>
17 );
18}
19