File tree 2 files changed +3
-6
lines changed
docs/start/framework/react
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ import { routeTree } from './routeTree.gen'
140
140
export function createRouter() {
141
141
const router = createTanStackRouter ({
142
142
routeTree ,
143
+ scrollRestoration: true ,
143
144
})
144
145
145
146
return router
@@ -190,9 +191,7 @@ import { hydrateRoot } from 'react-dom/client'
190
191
import { StartClient } from ' @tanstack/start'
191
192
import { createRouter } from ' ./router'
192
193
193
- const router = createRouter ({
194
- scrollRestoration: true ,
195
- })
194
+ const router = createRouter ()
196
195
197
196
hydrateRoot (document , <StartClient router = { router } />)
198
197
```
Original file line number Diff line number Diff line change @@ -85,9 +85,7 @@ import { hydrateRoot } from 'react-dom/client'
85
85
import { StartClient } from ' @tanstack/start'
86
86
import { createRouter } from ' ./router'
87
87
88
- const router = createRouter ({
89
- scrollRestoration: true ,
90
- })
88
+ const router = createRouter ()
91
89
92
90
hydrateRoot (document , <StartClient router = { router } />)
93
91
```
You can’t perform that action at this time.
0 commit comments