fix(react-router): add wildcard to refs route for nested routing

This commit is contained in:
ShaneK
2025-11-21 13:36:44 -08:00
parent 59f2dbfec9
commit 96c96fc353

View File

@@ -64,7 +64,7 @@ const App: React.FC = () => {
<Route path="/dynamic-ionpage-classnames" element={<DynamicIonpageClassnames />} />
<Route path="/tabs/*" element={<Tabs />} />
<Route path="/tabs-secondary/*" element={<TabsSecondary />} />
<Route path="/refs" element={<Refs />} />
<Route path="/refs/*" element={<Refs />} />
<Route path="/overlays" element={<Overlays />} />
<Route path="/params/:id" element={<Params />} />
<Route path="/nested-params/*" element={<NestedParams />} />