How can i display my image in react?
i know this is a basic question but im really having hard time just displaying my images. in some framework i can store it on asset folder but how can i do this in react js?
I call my images on App.js component by calling this way.
import macbookPiso from './images/design/macbookPiso.png';
<div class="macbook">
<img src={macbookPiso.png }/>
</div>