()
| 16 | const renderSettingsTab = (config?: Partial<TanStackDevtoolsConfig>) => { |
| 17 | let setSettings!: (s: Partial<DevtoolsStore['settings']>) => void |
| 18 | |
| 19 | const Capture = () => { |
| 20 | setSettings = createDevtoolsSettings().setSettings |
| 21 | return <SettingsTab /> |
| 22 | } |
| 23 | |
| 24 | const result = render(() => ( |
nothing calls this directly
no test coverage detected