()
| 51 | } |
| 52 | |
| 53 | function Mutation() { |
| 54 | const { mutate } = useMutation(mutationOpts) |
| 55 | |
| 56 | return ( |
| 57 | <div> |
| 58 | <button onClick={() => mutate()}>mutate</button> |
| 59 | </div> |
| 60 | ) |
| 61 | } |
| 62 | |
| 63 | function Page() { |
| 64 | return ( |
nothing calls this directly
no test coverage detected