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