@coko/client
Version:
Client side common code for coko apps
16 lines (15 loc) • 428 B
TypeScript
import React from 'react';
type VerifyEmailProps = {
className?: string;
verifying?: boolean;
successfullyVerified?: boolean;
alreadyVerified?: boolean;
expired?: boolean;
resend: () => void;
resending?: boolean;
resent?: boolean;
redirectToLogin: () => void;
redirectDelay?: number;
};
declare const VerifyEmail: (props: VerifyEmailProps) => React.ReactNode;
export default VerifyEmail;