michihouse-components-tmp
Version:
Biblioteca de componentes da MichiHouse
17 lines (16 loc) • 352 B
TypeScript
import * as React from "react";
interface LoginFormProps {
email?: string;
password?: string;
google?: boolean;
login: {
url: string;
action: (remember: boolean) => boolean;
};
register?: {
url: string;
};
dev?: boolean;
}
declare const LoginForm: React.FC<LoginFormProps>;
export { LoginForm };