“Zaimportuj obraz w React” Kod odpowiedzi

Importuj IMG React w innym pliku

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

Zaimportuj obraz w 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

Ract Import Obraz

import mainLogo from'./logoWhite.png';

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

Odpowiedzi podobne do “Zaimportuj obraz w React”

Pytania podobne do “Zaimportuj obraz w React”

Więcej pokrewnych odpowiedzi na “Zaimportuj obraz w React” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu