react add image from src code example
Example 1: img src in react js
import Logo from “./logo.png”;
<img src={Logo}/>
Example 2: React import image with url
import React from 'react';
import ReactDOM from 'react-dom';
const App: FunctionComponent = () => {
return (
<img src = {this.props.url} alt='something'/>
);
}