@coko/client
Version:
Client side common code for coko apps
18 lines (17 loc) • 528 B
TypeScript
import { ReactNode } from 'react';
type AuthenticationFormProps = {
children?: ReactNode;
className?: string;
onSubmit: () => void;
alternativeActionLabel?: string;
alternativeActionLink?: string;
errorMessage?: string;
forgotPasswordUrl?: string;
hasError?: boolean;
loading?: boolean;
showForgotPassword?: boolean;
submitButtonLabel?: string;
title?: string;
};
declare const AuthenticationForm: (props: AuthenticationFormProps) => ReactNode;
export default AuthenticationForm;