reason-react
reason-react copied to clipboard
Reason bindings for ReactJS
https://youtu.be/Hf6hEqHqpG4 shows the issues for ReasonReact JSX3 + GraphQL, but this is also the case even for simple components: ```reason open React; open! ReasonReact; type state = { count: int,...
In ReactJS we can easily make a multiselect component by setting our `value` to an `array` of `strings` instead of a single `string` like so: > Note > > You...
Have there been any plans or proposals to implement the “rules of hooks” into ReasonReact? ([ReactJS docs on the topic for context](https://reactjs.org/docs/hooks-rules.html)). A common pitfall with hooks is that they...
There seems to be no way to use local abstract types when using [@react.component]: Defining a polymorphic local abstract type like this: ```reason [@react.component] let make: type a. (~value: Value.t(a))...
The support for aria-haspopup is commented out: https://github.com/reasonml/reason-react/blob/20c307f794298a514c7b23efbc02c3cdd21172d9/src/ReactDOMRe.re#L109 Is it possible to add support for this attribute? 🙏
Proposal for improving the documentation: The "Forms" section of the ReactJS documentation recommends using additional libraries for forms validation/error messages/etc.. It also explicitly names the Formik library. Should the reason-react...
The ATOM and RSS feed of the reason-react blog are broken: * https://reasonml.github.io/reason-react/reason-react/blog/atom.xml * https://reasonml.github.io/reason-react/reason-react/blog/feed.xml Both respond with `404 File not found`.
Right now the support for `aria-current` is commented out: https://github.com/reasonml/reason-react/blob/6de6b7723aa4402922bd8717c2098868afe8570a/src/ReactDOMRe.re#L97 Is there any specific reason for this? Is it possible to add support for this attribute?
👋 Not sure if this is the right place to put this, but I'm just starting to use reason-react and I feel like a guided tutorial would be a nice...
Update the interop link on "I Really Need Feature X From ReactJS" page to be the interop section of Components page