Skip to content

Commit 0a6bdec

Browse files
committed
chore: format
1 parent fd253e2 commit 0a6bdec

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/start/framework/routing.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export default [
156156
To see `projects/home.tsx` appear in the layout, we'll need an outlet:
157157

158158
```tsx filename=./projects/project-layout.tsx lines=[8]
159-
import { Outlet } from "react-router"
159+
import { Outlet } from "react-router";
160160

161161
export default function ProjectLayout() {
162162
return (
@@ -166,9 +166,8 @@ export default function ProjectLayout() {
166166
<Outlet />
167167
</main>
168168
</div>
169-
)
169+
);
170170
}
171-
172171
```
173172

174173
## Index Routes

0 commit comments

Comments
 (0)