@brightlayer-ui/react-native-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
14 lines (13 loc) • 448 B
TypeScript
import React from 'react';
import { CreateAccountScreenProps } from './types.js';
/**
* Base Component that renders a screen for the user to enter their email address to start the
* account creation process.
*
* @param {CreateAccountScreenProps} props - Basic props of Create Account Screen Base component
*
* @category Component
*/
export declare const CreateAccountScreenBase: React.FC<CreateAccountScreenProps & {
inputRef?: any;
}>;