Single page applications
Multi-page applications
In single page applications, our page is built with components and every component is a React Component and also the entire page is managed by root React component and it’s just under React control.
In the Multipage apps in second hand, we split up our components but a lot of pages are going to be normal HTML pages, and widgets we dump in like an Image gallery that is managed by React, so the entire page is not under React control.
But the popular approach now days is Single page applications approach because you manage the entire page with Javascript you never have to go back to the server and reload the page. that is the amazing use to experience because everything happens instantly.
Here you are not just showing spinners page where a user can’t do anything but a page which is still a reactive web app.
#reactjs #javascript #programming