I have the following route established:
const router = createBrowserRouter(
createRoutesFromElements(<>
<Route path={`/:siteid/login`} element={< LoginLayout/>}>
<>)
Of course /test/login
works well, but I want to use the same route for /test/again/login
Is there a way to get the route to work for both URLs without creating a different route path.
Using the latest version of react-router-dom
Thanks
1