how to use a picture in react 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: how to use saved image on react
<img alt="timer" src={require('./images/timer.png')} />