We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ReactEvent
React.Event
It seems a lot of places in the docs say ReactEvent, when they mean to say React.Event, e.g.:
/* App.re */ /* CORRECT! This code is bug-free. 👍 */ [@react.component] let make = () => { let (name, setName) = React.useState(() => "John"); <input type_="text" value={name} onChange={ event => { let value = ReactEvent.Form.target(event)##value; setName(_ => value) } } />; };
The text was updated successfully, but these errors were encountered:
Happy to fix this one myself, but just wanted to get it down before I forget!
Sorry, something went wrong.
Good catch, I forgot to update the docs references with the last update.
No branches or pull requests
It seems a lot of places in the docs say
ReactEvent
, when they mean to sayReact.Event
,e.g.:
The text was updated successfully, but these errors were encountered: