From f1c9ae4cdd09d0030489133355613faae302f7e7 Mon Sep 17 00:00:00 2001 From: Sinan Date: Mon, 26 Aug 2024 12:28:17 +0530 Subject: [PATCH] admin sign in page issue solved --- .../staff/@signin/(.)otp-verification/page.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/client/app/staff/@signin/(.)otp-verification/page.tsx b/client/app/staff/@signin/(.)otp-verification/page.tsx index eff5564a..4a9fed50 100644 --- a/client/app/staff/@signin/(.)otp-verification/page.tsx +++ b/client/app/staff/@signin/(.)otp-verification/page.tsx @@ -1,7 +1,16 @@ -import React from 'react' +'use client'; +import { FormEvent } from 'react' import OtpVerificationModel from '@/components/models/OtpVerificationModel' -const OptInterceptor = () => - +const OptInterceptor = () => { + const handleResend = ()=>{ + + } + const handleVerify = (e:FormEvent)=>{ + handleVerify + } + + return +} export default OptInterceptor \ No newline at end of file