When Reactjs Components are rendered at first time, imgs flicker.
How can I fix it?
<Example Code>
import AccountProfile from '../../img/AccountProfile.png';
...
return(
<div className='MyAccount'>
<img className='MyAccount_Img' src={AccountProfile}/> // <- img flicker when first rendered.
</div>
);
P.S Edit: How to preload images in React.js? I found the solution in here.