Skip to content

Commit d90d517

Browse files
authoredJan 31, 2025··
docs(router): add missing import in outlets.md snippet (#3292)
1 parent 3f399e7 commit d90d517

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/router/framework/react/guide/outlets.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The `Outlet` component is used to render the next potentially matching child rou
1414
A great example is configuring the root route of your application. Let's give our root route a component that renders a title, then an `<Outlet />` for our top-level routes to render.
1515

1616
```tsx
17-
import { createRootRoute } from '@tanstack/react-router'
17+
import { createRootRoute, Outlet } from '@tanstack/react-router'
1818

1919
export const Route = createRootRoute({
2020
component: RootComponent,

0 commit comments

Comments
 (0)
Please sign in to comment.