UNPKG

react-mui-auth-page

Version:

React Login/SignUp components Library backed by Material UI for fast Development

14 lines (13 loc) 379 B
import * as React from "react"; export interface ForgetProps { handleForget: (forgetVars: { email: string; }) => any; textFieldVariant?: "outlined" | "filled" | "standard"; emailValidator?: (value: string) => boolean; } interface NaviProps { gobackToSignIn: () => any; } declare const Forget: React.FC<ForgetProps & NaviProps>; export default Forget;