MobX React helper
    Preparing search index...

    Interface FormComponentProps<V>

    interface FormComponentProps<V = string> {
        defaultValue?: V;
        onChange?: (value: V, ...extra: any[]) => any;
        value?: V;
    }

    Type Parameters

    • V = string

    Hierarchy

    • Omit<
          InputHTMLAttributes<HTMLInputElement>,
          "defaultValue" | "value" | "onChange",
      >
      • FormComponentProps
    Index

    Properties

    defaultValue?: V
    onChange?: (value: V, ...extra: any[]) => any
    value?: V