()
| 22 | const mutationKey = queryKey() |
| 23 | |
| 24 | function States() { |
| 25 | const mutationStates = useMutationState() |
| 26 | |
| 27 | return <div>count: {mutationStates().length}</div> |
| 28 | } |
| 29 | |
| 30 | function Mutate() { |
| 31 | const mutation = useMutation(() => ({ |
nothing calls this directly
no test coverage detected