FAQ: React Router - Dynamic Routes

This community-built FAQ covers the “Dynamic Routes” exercise from the lesson “React Router”.

Paths and Courses
This exercise can be found in the following Codecademy content:

React Router
(Beta) Learn React Router

FAQs on the exercise Dynamic Routes

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!
You can also find further discussion and get answers to your questions over in Language Help.

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head to Language Help and Tips and Resources. If you are wanting feedback or inspiration for a project, check out Projects.

Looking for motivation to keep learning? Join our wider discussions in Community

Learn more about how to use this guide.

Found a bug? Report it online, or post in Bug Reporting

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

 <Router>
      <Header />
      <main>
        <Route path="/articles/:title">
          <Article />
        </Route>
        <Route path="/about">
          <About/>
        </Route>
        <Route path="/sign-up">
          <SignUp/>
        </Route>
        <Route path='/articles'>
          <Articles/>
        </Route>
        <Route path="/categories">
          <Categories/>
        </Route>
        <Route path="/profile">
          <Profile/>
        </Route>
      </main>
      <Footer />
    </Router>

This is how I have my router set up but for some reason my Articles component gets rendered below my Article component when I navigate to an article page

Your path ‘/articles’ fits both: ‘/articles’ and ‘/articles/:title’. Place the keyword exact before path:

<Route exact path='/articles'>
3 Likes

Thank you! I realized my question was actually jumping ahead. A few exercises later they explained that that was the intended behavior. I just didn’t know because the video didn’t depict that lol.

4 Likes

Hello I have a question, already checked thousand times and this is how my code looks like? exactly the same as in the video:


But for some reason my links in the “Articles” are not clickable, they do change if I manually type in the url address like http://localhost:3000/articles/objects then article does show but I cant click on it.
Also I want to stay that I cant do npm start it throws this error “error:0308010C:digital envelope routines::unsupported” and only after I type a command like $env:NODE_OPTIONS = “–openssl-legacy-provider” it starts the browser but still I cant click any links.Need some help :face_with_spiral_eyes: