[Solved] What is the best approuch to create a single page application React JS? [closed]


You can inject some components in React in other framework or web page but if you build a ReactJS application, it’s basically a single page application.

In your application you will have to use a router like:

There are many other, but those are good for begun.

In a second hand, you will have to manage some components by yourself for example, when you create a new route for display the profile of a user, you will have some components to display or not if the users put all his personal information or not.

Well the profile component is manage by the router and each users information line could be manage by smaller components.

solved What is the best approuch to create a single page application React JS? [closed]