Capítulo 24 de 29
Form devtools are a TanStack Devtools plugin, not a standalone panel — install the shared @tanstack/react-devtools shell plus the @tanstack/react-form-devtools plugin, then mount <TanStackDevtools plugins={[formDevtoolsPlugin()]} /> once at the app root.
@tanstack/react-devtools host, and @tanstack/react-form-devtools supplying formDevtoolsPlugin.<TanStackDevtools> is rendered once, typically alongside the root <App />, with a plugins array — this is the same pattern other TanStack libraries in this devtools family use (e.g. a query devtools plugin could be added to the same array).@tanstack/solid-devtools + @tanstack/solid-form-devtools); other frameworks weren't documented with first-party devtools at time of writing.import { TanStackDevtools } from '@tanstack/react-devtools'
import { formDevtoolsPlugin } from '@tanstack/react-form-devtools'
import App from './App'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
<TanStackDevtools plugins={[formDevtoolsPlugin()]} />
</StrictMode>,
)
react-devtools shell + react-form-devtools plugin) — the plugin alone doesn't render anything without the host.<TanStackDevtools> once at the app root, not per-form — it introspects every form instance in the tree automatically via the plugin.