DEV Community

Discussion on: Play With the React 🐘Router

Collapse
 
thidasapankaja profile image
Thidasa Pankaja Paranavitharana

Hey, Nice tutorial. Btw, I have a question. I've seen in many articles, there the Routes are inside a Switch . But in your tutorial you haven't used Switch. Why do we should use / shouldn't use Switch ?

Collapse
 
sait profile image
Sai gowtham • Edited

A switch is used to switch between routes whenever the exact path is matching /while handling the 404 requests we need to wrap all our Routes with the Switch Component.

Refer Play with React Router Part-2