Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
remix-run-bot committed Dec 14, 2024
1 parent fd253e2 commit 0a6bdec
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/start/framework/routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export default [
To see `projects/home.tsx` appear in the layout, we'll need an outlet:

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

export default function ProjectLayout() {
return (
Expand All @@ -166,9 +166,8 @@ export default function ProjectLayout() {
<Outlet />
</main>
</div>
)
);
}

```

## Index Routes
Expand Down

0 comments on commit 0a6bdec

Please sign in to comment.