import { FormInput } from "@/components/auth/FormInput";
import { MessageDisplay } from "@/components/auth/MessageDisplay";
import { AuthButton } from "@/components/auth/AuthButton";
interface VerificationFormProps {
code: string;
setCode: (value: string) => void;
errorMessage: string;
isLoading: boolean;
onVerifyPress: () => void;
}
export const VerificationForm = ({
code,
setCode,
errorMessage,
isLoading,
onVerifyPress,
}: VerificationFormProps) => {
return (
<>
{errorMessage ? (
) : null}
Verify Email
>
);
};