Question about routing, i want to have this structure:
/admin/:userId/settings/:settingId
How to setup router for this case? I tried this:
<Route exact path="/admin/:userId">
                user
                <Route exact path="/settings/:settingId">
                    setting
                </Route>
            </Route>
 
     
    