Convenience functions for working with form events.
onValueChange :: forall f. (String -> EventHandler (f Unit)) -> Prop (f Unit)
Attaches an event handler which will produce an input when the value of an input field changes.
onValueInput :: forall f. (String -> EventHandler (f Unit)) -> Prop (f Unit)
Attaches an event handler which will fire on input.
onChecked :: forall f. (Boolean -> EventHandler (f Unit)) -> Prop (f Unit)
Attaches an event handler which will fire when a checkbox is checked or unchecked.