()
| 25 | const key = queryKey() |
| 26 | |
| 27 | function IsFetching() { |
| 28 | const isFetching = useIsFetching() |
| 29 | |
| 30 | return <div>isFetching: {isFetching()}</div> |
| 31 | } |
| 32 | |
| 33 | function Query() { |
| 34 | const [ready, setReady] = createSignal(false) |
nothing calls this directly
no test coverage detected