Skip to content

Commit 244d728

Browse files
authored
docs(react): remove unopened closing tag (#2964)
1 parent 7d6da43 commit 244d728

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

docs/react/navigation.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -403,13 +403,12 @@ When working with tabs, Ionic needs a way to know which view belongs to which ta
403403
```tsx
404404
<IonApp>
405405
<IonReactRouter>
406-
<IonRouterOutlet>
407-
<Route path="/tabs" render={() => <Tabs />} />
408-
<Route exact path="/">
409-
<Redirect to="/tabs" />
410-
</Route>
411-
</IonRouterOutlet>
412-
</IonSplitPane>
406+
<IonRouterOutlet>
407+
<Route path="/tabs" render={() => <Tabs />} />
408+
<Route exact path="/">
409+
<Redirect to="/tabs" />
410+
</Route>
411+
</IonRouterOutlet>
413412
</IonReactRouter>
414413
</IonApp>
415414
```

versioned_docs/version-v6/react/navigation.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -403,13 +403,12 @@ When working with tabs, Ionic needs a way to know which view belongs to which ta
403403
```tsx
404404
<IonApp>
405405
<IonReactRouter>
406-
<IonRouterOutlet>
407-
<Route path="/tabs" render={() => <Tabs />} />
408-
<Route exact path="/">
409-
<Redirect to="/tabs" />
410-
</Route>
411-
</IonRouterOutlet>
412-
</IonSplitPane>
406+
<IonRouterOutlet>
407+
<Route path="/tabs" render={() => <Tabs />} />
408+
<Route exact path="/">
409+
<Redirect to="/tabs" />
410+
</Route>
411+
</IonRouterOutlet>
413412
</IonReactRouter>
414413
</IonApp>
415414
```

0 commit comments

Comments
 (0)