Improving loading time in react.js

When you have a server with large number of images it is not unusual that if it takes much time to load.

When the website loads the process happening behind it includes transferring those images to the users

browser also. Since react is just a java-script library for building user interfaces it will not help with the

problem. Then what should you do?. Let's see.

Reducing the size of images is one way to improve the speed. When the size is reduced there is only

less data to transfer. If you are sure the size of the images are not the problem, then try searching

information on google to see what is causing the issue.