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 fd253e2 commit 0a6bdecCopy full SHA for 0a6bdec
docs/start/framework/routing.md
@@ -156,7 +156,7 @@ export default [
156
To see `projects/home.tsx` appear in the layout, we'll need an outlet:
157
158
```tsx filename=./projects/project-layout.tsx lines=[8]
159
-import { Outlet } from "react-router"
+import { Outlet } from "react-router";
160
161
export default function ProjectLayout() {
162
return (
@@ -166,9 +166,8 @@ export default function ProjectLayout() {
166
<Outlet />
167
</main>
168
</div>
169
- )
+ );
170
}
171
-
172
```
173
174
## Index Routes
0 commit comments