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