get image 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: how to write img jsx
<img src={window.location.origin + '/img/myImage.png'} />
import image from './path-to-image';
<img src={image} height={100} width={100} />
<img src={window.location.origin + '/img/myImage.png'} />