feat: OTP Resend

This commit is contained in:
boboiazumi
2025-05-30 14:19:36 +07:00
parent 935d23887c
commit a7cf85dd66
8 changed files with 103 additions and 4 deletions
@@ -0,0 +1,10 @@
import { useSendOTP } from '@imphnen-frontend-service/utils';
export const useResendOtpHook = () => {
const { resendOTP, isLoading } = useSendOTP();
return {
resendOTP
};
};