на методы интерфейса чисто по совпадению имён, я правильно понял?
open Fable.Core open Fable.Core.JsInterop open Elmish open Fable.React let [<Global>] confirm: string -> bool = jsNative type ReactPhoneNumberInputProps = | Name of string | Value of string | OnChange of (string -> unit) | ClassName of string | InputClassName of string | TabIndex of int | Required of bool | Disabled of bool | OnBlur of (unit -> unit) let inline PhoneInput (props : ReactPhoneNumberInputProps list) (elems : ReactElement list) : ReactElement = ofImport "default" "react-phone-number-input" (keyValueList CaseRules.LowerFirst props) elems
Обсуждают сегодня