React app, Is there any difference (performance, lifecycle or any other aspects I can't think about) between storing images in public folder and display them by using:
<img src="/image.jpg" />
or storing images in src folder and use them with:
<img src={require('../../assets/image.jpg')} />