scrimba
Frontend Career Path
Advanced React
React Router
Route Params Quiz
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Route Params Quiz
Expand for more info
quiz.md
run
preview
console
1. What is a route/url parameter?


------------
2. Add a route parameter called `productId` to the Route path below:


<Route path="/products" element={<ProductDetail />} />


------------
3. Add whatever you need to add for the component below to display
the route parameter in the <h1>


function ProductDetail() {
return <h1>Product detail page goes here</h1>
}
Console
index.html
-4:15