amplify-material-ui
Version:
A Material-UI based implementation of aws amplify
12 lines (11 loc) • 334 B
TypeScript
import * as React from 'react';
import { UsernameAttribute } from './types';
export interface SignInProps {
validationData?: {
[key: string]: string;
};
hideSignUpLink?: boolean;
hideForgotPasswordLink?: boolean;
usernameAttribute?: UsernameAttribute;
}
export declare const SignIn: React.FC<SignInProps>;