UNPKG

@brightlayer-ui/react-auth-workflow

Version:

Re-usable workflow components for Authentication and Registration within Eaton applications.

14 lines (13 loc) 460 B
import React from 'react'; import { CreateAccountScreenProps } from './types.js'; /** * Component that renders a screen for the user to enter their email address to start the * account creation process. * * @param {CreateAccountScreenProps} props - props of CreateAccountScreen base component * * @category Component */ export declare const CreateAccountScreenBase: React.FC<React.PropsWithChildren<CreateAccountScreenProps & { inputRef?: any; }>>;