When setting inline style, I found JsxDOMStyle.t
lacks some properties like aspectRatio
, scrollbarBehavior
. Currently I add those properties by %raw
.
React CSSProperties
uses https://github.com/frenic/csstype which syncs with MDN. Could rescript-react JsxDOMStyle.t
sync with MDN?
you can definitely open a PR to add props that would be missing or to sync JsxDOMStyle.t
with MDN (a similar technique was recently used for the new experimental bindings to WebAPI.
You can also decide to customize the JSX types for your project.
Thank you. I opened a PR at main repo.
2 Likes