interface LogInFormProps {
    error?: FetchErrorData;
    extraFields?: Element[];
    legend?: string;
    logIn: (data: FormData) => Promise<void>;
    store?: Store<State>;
    title?: string;
}

Hierarchy (View Summary)

Properties

error?: FetchErrorData
extraFields?: Element[]
legend?: string
logIn: (data: FormData) => Promise<void>
store?: Store<State>
title?: string