img src in react js

JavaScript
import shoe1 from './img/shoe_01.jpg'
const Shoe = (e) => {
	return ( 
        <div className="shoe-container">
            <img src={shoe1} alt=""/>
        </div>
    );
}import Logo from “./logo.png”;
<img src={Logo}/>//How to import an image in react js	
import image from './image-path';

<img src={image} alt="Write something here" />
Source

Also in JavaScript: