“img src en react js” Código de respuesta

reaccionar img

import React from 'react';
import logo from './logo.png'; // Tell webpack this JS file uses this image

console.log(logo); // /logo.84287d09.png

function Header() {
  // Import result is the URL of your image
  return <img src={logo} alt="Logo" />;
}

export default Header;
Bewildered Bug

img src en react js

import Logo from “./logo.png”;
<img src={Logo}/>
Homely Hornet

Etiqueta IMG en React

//two way to use image in react
Option 1: Put the image in the public directory
public/images/thing.jpg, you could display that image this way:
   <img src="images/logo.jpg" />

Option 2: import the image into the component
import Logo from “./logo.jpg”;
<img src={Logo}/>
Sab Tech

Respuestas similares a “img src en react js”

Preguntas similares a “img src en react js”

Más respuestas relacionadas con “img src en react js” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código