UNPKG

@coko/client

Version:

Client side common code for coko apps

18 lines (17 loc) 528 B
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;