“Importuj obraz w React JS” Kod odpowiedzi

Pokazanie obrazu w React JS

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

<img src={image} height={100} width={100} />
Frail Flatworm

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

Importuj obraz w React JS

 <script src="../node_modules/jquery/dist/jquery.min.js"></script>
    <script src="../node_modules/bootstrap/dist/js/bootstrap.js"></script>
Aggressive Armadillo

Odpowiedzi podobne do “Importuj obraz w React JS”

Pytania podobne do “Importuj obraz w React JS”

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

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

Przeglądaj inne języki kodu