fable-compiler / fable-react

Fable bindings and helpers for React and React Native
MIT License
275 stars 67 forks source link

OnReset is missing in DOMAttr. #93

Closed OnurGumus closed 6 years ago

OnurGumus commented 6 years ago

OnReset is a valid event for forms but it is missing in DomAttr. Please add it.

alfonsogarciacaro commented 6 years ago

Thanks for pointing it out @OnurGumus! Would you mind sending a PR to add it?

alfonsogarciacaro commented 6 years ago

Also, remember that a temporary solution is to use HTMLAttr.Custom("onReset", fun ev -> ...)

OnurGumus commented 6 years ago

Here's the pull request: https://github.com/fable-compiler/fable-react/pull/94