authhaven
Version:
Customizable React and TypeScript authentication UI components with support for login, signup, 2FA, and more.
8 lines (7 loc) • 319 B
TypeScript
import React from "react";
import { ForgotPasswordSelectionProps } from "../types/types";
/**
* ForgotPasswordSelection component that lets users choose between email or phone for password reset
*/
declare const ForgotPasswordSelection: React.FC<ForgotPasswordSelectionProps>;
export default ForgotPasswordSelection;