@brightlayer-ui/react-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
13 lines (12 loc) • 541 B
TypeScript
import React from 'react';
import { ResetPasswordScreenProps } from './types.js';
/**
* Component that renders a ResetPassword screen that allows a user to reset their password and shows a success message upon a successful password reset..
*
* @param {ResetPasswordScreenProps} props - props of ResetPasswordScreen base component
* @returns a React JSX Element that renders a ResetPassword screen
*
* @category Component
*
*/
export declare const ResetPasswordScreenBase: React.FC<React.PropsWithChildren<ResetPasswordScreenProps>>;