I am a newbie in reactjs and still learning.
I have been trying to load an external image in reactjs, using the following code
Module not found: Can't resolve 'https://www.example.com/logo.png' in '/Users/admin/website1/website/src'
My code is as follows:
<div className="profile-userpic">
<img src="https://www.example.com/logo.png" />
</div>
where as an image in local storage loads successfully
<div className="profile-userpic">
<img src={require('./images/me-icon.png')} />
</div>