@brightlayer-ui/react-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
12 lines (11 loc) • 408 B
TypeScript
import React from 'react';
import { VerifyCodeScreenProps } from './types.js';
/**
* Component that renders a screen that prompts a user to enter the confirmation code
* that was sent to the email address that they used to register.
*
* @param {VerifyCodeScreenProps} props - props of VerifyCodeScreen
*
* @category Component
*/
export declare const VerifyCodeScreen: React.FC<VerifyCodeScreenProps>;