Create Application Navigation
Learn about application navigation, including how to create a navbar.
We'll cover the following...
Application navigation
A non-trivial application should include the means for users to navigate across the numerous pages in the application. In a React application, react-router-dom
is used for navigation. This lesson creates the navigation for the bookshop application. Earlier, we created some routes for navigation. We also created a ProtectedRoute
component and an Authorized
...