“Importar una imagen en React” Código de respuesta

Importar IMG React en otro archivo

//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'

Grieving Gharial

Importar una imagen en React

import mainLogo from'./logoWhite.png';

//then in the render function of Jsx insert the mainLogo variable

class NavBar extends Component {
  render() {
    return (
      <nav className="nav" style={nbStyle}>
        <div className="container">
          //right below here
          <img  src={mainLogo} style={nbStyle.logo} alt="fireSpot"/>
        </div>
      </nav>
    );
  }
}
Akampurira Brian David

Imagen de importación RACT

import mainLogo from'./logoWhite.png';

<img  src={mainLogo} style={nbStyle.logo} alt="fireSpot"/>
Evil Earthworm

Respuestas similares a “Importar una imagen en React”

Preguntas similares a “Importar una imagen en React”

Más respuestas relacionadas con “Importar una imagen en React” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código