“Ихпорт изображения в React JS” Ответ

Показывая изображение в React JS

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

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

Импорт 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 JS

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

Ответы похожие на “Ихпорт изображения в React JS”

Вопросы похожие на “Ихпорт изображения в React JS”

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

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

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