“импортировать изображение в React” Ответ

Импорт IMG реагирует в другом файле

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

импортировать изображение в 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 Image

import mainLogo from'./logoWhite.png';

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

Ответы похожие на “импортировать изображение в React”

Вопросы похожие на “импортировать изображение в React”

Больше похожих ответов на “импортировать изображение в React” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования