We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b6f889 commit 917d73aCopy full SHA for 917d73a
docs/upgrading/future.md
@@ -57,6 +57,7 @@ Split any multi-segment splat `<Route>` into a parent route with the path and a
57
<Route path="/" element={<Home />} />
58
- <Route path="dashboard/*" element={<Dashboard />} />
59
+ <Route path="dashboard">
60
++ <Route index element={<Dashboard />} />
61
+ <Route path="*" element={<Dashboard />} />
62
+ </Route>
63
</Routes>
0 commit comments