woonki

Results 208 comments of woonki

I have another question about declaring the props type of the component which doesn't have any props. Is it possible to declare the empty record type by #5658 ? ```rescript...

Based on #5658 and addKey function, I think I can try to remove the key from the props. I’m wondering whether it is okay `Object.assign` in js representation with React.createElement...

> @mattdamon108 this seems doable with JSX V4? Yes, I think so too. @mvaled Can you try the latest compiler and rescript-react as posted on the forum? https://forum.rescript-lang.org/t/call-for-help-2-test-jsx-v4/3781 Maybe something...

If it is not working then try this: ```rescript type props = { completion: completionInformation, children: element } ```

I just checked about `Mithril`, never knew before. You made your own bindings! How about your `bsconfig.json`? Do you use "reason"."react-jsx" option?

I've looked into your bindings. I think it would be working highly possibility. You can check the latest rescript-react binding and update your Mithrill bindings accordingly, then try with latest...

> One question, though. Would this require the actual React JS library or it's just the transformation, that would work with any compatible "react" binding? Just transformation and working with...

`bsconfig` seems you're using jsx transformation already. Yes, it's good sign. Good luck!

When you try the latest compiler with JSX v4, change this property in bsconfig.json ```json "reason": { "react-jsx": 3 }, ``` to ```json "jsx": { "version": 4 } ```

I think that it is a better choice that `ReactV3` is shipped with the latest `rescript-react` because it is could be used in the same project. Regarding dom and router,...