import img react code example

Example 1: import img react

import shoe1 from './img/shoe_01.jpg'
const Shoe = (e) => {
	return ( 
        
); }

Example 2: img src in react js

import Logo from “./logo.png”;

Example 3: how to load image in react js

//How to import an image in react js	
import image from './image-path';

Write something here

Example 4: import img react in another file

//import imgs in a different js file
import lostImage from './assets/img/illustrations/lost.svg';
export { lostImage }; 

//import in the component to use it
import {lostImage} from './images.js'

Tags:

Misc Example