@brightlayer-ui/react-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
11 lines (10 loc) • 360 B
TypeScript
import React from 'react';
import { LoginScreenProps } from './types.js';
/**
* Component that renders a login screen that prompts a user to enter a username and password to login.
*
* @param {LoginScreenProps} props - props of LoginScreen
*
* @category Component
*/
export declare const LoginScreen: React.FC<React.PropsWithChildren<LoginScreenProps>>;