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.
2 parents 5de4fc0 + 1b16b56 commit 467fc76Copy full SHA for 467fc76
docs/guides/overview.md
@@ -331,15 +331,15 @@ beyond what was matched isn't recognized.
331
will render inside the `Inbox` UI for any paths not recognized
332
after the parent route's path `/inbox/*`
333
-->
334
- <NotFoundRoute handler={InboxNotFound}
+ <NotFoundRoute handler={InboxNotFound}/>
335
<Route name="message" path="/inbox/:messageId" handler={Message}/>
336
<DefaultRoute handler={InboxStats}/>
337
</Route>
338
<Route name="calendar" path="/calendar" handler={Calendar}/>
339
<DefaultRoute handler={Dashboard}/>
340
341
<!-- will catch any route that isn't recognized at all -->
342
- <NotFoundRoute handler={NotFound}
+ <NotFoundRoute handler={NotFound}/>
343
</Routes>
344
```
345
0 commit comments