Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
React Router Quick Start Guide

You're reading from  React Router Quick Start Guide

Product type Book
Published in Sep 2018
Publisher Packt
ISBN-13 9781789532555
Pages 156 pages
Edition 1st Edition
Languages
Author (1):
Sagar Ganatra Sagar Ganatra
Profile icon Sagar Ganatra

Table of Contents (10) Chapters

Preface 1. Introduction to React Router 4 and Creating Your First Route 2. Configuring Routes - Using Various Options in the Route Component 3. Using the Link and NavLink Components to Navigate to a Route 4. Using the Redirect and Switch Components 5. Understanding the Core Router, and Configuring the BrowserRouter and HashRouter components 6. Using StaticRouter in a Server-Side Rendered React Application 7. Using NativeRouter in a React Native Application 8. Redux Bindings with connected-react-router 9. Other Books You May Enjoy

Navigating to nested routes

In the last chapter, we saw how to create nested routes using the match prop that the rendered component receives. The match.url property contains the browser's URL path that matched the <Route> component's path. Similarly, the <Link> and <NavLink> components can be used to create navigation links to access these nested routes:

<nav>
<Link
to={`${match.url}/pictures`}>
Pictures
</Link>
<NavLink
to={`${match.url}/books`}
activeStyle={{
background: 'orange'
}}>
B
ooks
</NavLink>
</nav>

In the preceding code snippet, the <Link> and <NavLink> components make use of match.url to get a reference to the current rendered route and add the additional path values required to navigate to the nested route.

...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}