Description
First, just want to say this library looks pretty awesome and I've been having a lot of fun getting my hands dirty, thanks for all of this work!
I have encountered some difficulty, specifically with getting values out of events. I found one solution that seems to work here, but it involves defining a function which makes an external call to identity, i.e. its doing some magic type-cast.
Additionally, I wanted to be able to read the values submitted within a form tag, but found that was also super tricky,
e.g.
...
let handle_submit e =
let v = e |> _ in (* ??? *)
set_some_state(v) in
form
[| onSubmit handle_submit |]
[ input [||] [] ]
...
Any ideas on how to fix this?
In addition, I am wondering if this library is still being maintained, as I see there haven't been any commits in a while, and it seems people have gravitated more towards Reason-React. My interest in this repo stems from the fact that I can use an existing OCaml repo without modification.
So, my question: is the library still being maintained, and if not, is there a reason besides lack of interest, or is there a technical reason why this wasn't the right way to solve the problem? If it is the former, I would love to be part of an effort to bring it back up to speed :)