doj-react-adminlte
Version:
Simple and easy-to-use AdminLTE components for React
17 lines (12 loc) • 400 B
TypeScript
import * as React from 'react';
export interface LoginBoxProps {
clearUsernameOnSubmit?: boolean;
clearPasswordOnSubmit?: boolean;
onSubmit?: (...args: any[])=>any;
passwordPlaceholder?: string;
title: React.ReactNode;
usernamePlaceholder?: string;
}
export default class LoginBox extends React.Component<LoginBoxProps, any> {
render(): JSX.Element;
}