Replies: 1 comment 2 replies
-
If I'm not mistaken, because the TSR Devtools consumes react's context api for reactivity, you need it to be rendered inside the // src/routes/__root.tsx
const Route = createRootRoute({
component: () => (
<>
<Outlet />
<RouterDevtools />
</>
);
}); |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
When I like to render the router devtools, I'm getting error:
TypeError: Cannot read properties of null (reading '__store')
The snipper is like this:
Router.tsx
RQProvider.tsx
Error stack:
package.json
I'm using
React
andvite
, together with thecodegen
plugin.BR,
Beta Was this translation helpful? Give feedback.
All reactions