()
| 20 | const key = queryKey() |
| 21 | |
| 22 | function IsFetching() { |
| 23 | const isFetching = useIsFetching() |
| 24 | |
| 25 | return <div>isFetching: {isFetching}</div> |
| 26 | } |
| 27 | |
| 28 | function Query() { |
| 29 | const [ready, setReady] = React.useState(false) |
nothing calls this directly
no test coverage detected
searching dependent graphs…