Answers for "inserting an image in react"

2

showing an image in react js

import image from './path-to-image';

<img src={image} height={100} width={100} />
Posted by: Guest on December-09-2020
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'
Posted by: Guest on September-13-2020

Code answers related to "inserting an image in react"

Code answers related to "Javascript"

Browse Popular Code Answers by Language