I want to be able to do the following routes.js ```jsx <Router> <Route path="/some-url" element={<SomeElement />}> <Route path="/some-url/some-other-url" element={<SomeOtherElement />}> </Route> </Router> ``` SomeElement.js ```jsx <div> <h1>SomeElement</h1> <Outlet /> </div> ``` SomeOtherElement.js ```jsx <div>Some other element</div> ``` And if user lands on /some-url/some-other-url, he should see ```html <div> <h1>SomeElement</h1> <div>Some other element</div> </div> ``` Motivation: All paths in our app are defined as absolute paths like this paths.js ```js export const SOME_URL = '/some-url' export const SOME_OTHER_URL = '/some-url/some-other-url' ```