Search⌘ K

Routing

Explore how to use React Router to build routing capabilities in React single-page applications. Learn about its core components and installation to enable URL mapping and navigation in your projects.

React Router

Most single page applications will need some form of routing, meaning that we want to map certain functions or behaviors to a URL. For example, if we visit the URL of /users/manuel, we would like to present the profile of the user manuel.

React Router has established itself as the standard for routing in React single-page applications. Developed by ...