Tiny Congress Frontend
    Preparing search index...
    interface SignupFormProps {
        error?: string | null;
        isLoading: boolean;
        loadingText?: string;
        onSubmit: (e: FormEvent) => void;
        onUsernameChange: (value: string) => void;
        successData?: { account_id: string; root_kid: string } | null;
        username: string;
    }
    Index

    Properties

    error?: string | null
    isLoading: boolean
    loadingText?: string
    onSubmit: (e: FormEvent) => void
    onUsernameChange: (value: string) => void
    successData?: { account_id: string; root_kid: string } | null
    username: string