import { defaultContext } from '@tanstack/react-query'; import { ReactQueryDevtools } from '@tanstack/react-query-devtools'; import { useDebugState } from '@sd/client'; export const Devtools = () => { const debugState = useDebugState(); return ( <> {debugState.reactQueryDevtools !== 'disabled' ? ( ) : null} ); };