DEV Community

Discussion on: Private, Public and Restricted routes in React

Collapse
 
kristjanreinhold profile image
Kristjan

Thanks! Used your implementation. For me i had to tweak it because i have a public design landing page and logged in admin dashboard.

Had to remove exact from Public route - so it would reDirect into the Home.

And within my Home - had to implement Switch for routes public routes

Routes.map...
if (prop.layout === PUBLIC_ROUTE) {
// Exact in here!