how to display image in react with url code example
Example 1: showing an image in react js
import image from './path-to-image';
<img src={image} height={100} width={100} />
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'/>
);
}