Skip to content

Commit 22631ae

Browse files
committed
chore: minor changes
1 parent 55ae3b8 commit 22631ae

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

docs/framework/react/basic-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ TanStack devtools provides you with an easy to use and modular client that allow
1010
Install the [TanStack Devtools](https://www.npmjs.com/package/@tanstack/react-devtools) library, this will install the devtools core as well as provide you framework specific adapters.
1111

1212
```bash
13-
npm i @tanstack/solid-devtools
13+
npm i @tanstack/react-devtools
1414
```
1515

1616
Next in the root of your application import the `TanstackDevtools` from the required framework adapter (in this case @tanstack/react-devtools).

docs/framework/solid/basic-setup.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ import { render } from 'solid-js/web';
4242

4343
import { TanstackDevtools } from '@tanstack/solid-devtools'
4444

45-
import { ReactQueryDevtoolsPanel } from '@tanstack/solid-query-devtools'
45+
import { SolidQueryDevtoolsPanel } from '@tanstack/solid-query-devtools'
4646
import { TanStackRouterDevtoolsPanel } from '@tanstack/solid-router-devtools'
47-
import { ReactFormDevtoolsPanel } from '@tanstack/solid-form'
47+
import { SolidFormDevtoolsPanel } from '@tanstack/solid-form'
4848

4949
import App from './App'
5050

@@ -54,17 +54,13 @@ render(() => (
5454

5555
<TanstackDevtools
5656
plugins={[
57-
{
58-
name: 'Tanstack Query',
59-
render: () => <ReactQueryDevtoolsPanel />,
60-
},
6157
{
6258
name: 'Tanstack router',
6359
render: () => <TanStackRouterDevtoolsPanel />,
6460
},
6561
{
6662
name: 'Tanstack Form',
67-
render: () => <ReactFormDevtoolsPanel />,
63+
render: () => <SolidFormDevtoolsPanel />,
6864
},
6965
]}
7066
/>

0 commit comments

Comments
 (0)