const createHub = proc.useMutation({ onSuccess: () => { /** handle onSuccess */} onError: () => { /** handle error */} }) const handleSubmit = () => { // ... createHub.mutate(...); }