To #rescript people, is there a better way than https://github.com/kentaromiura/rescript-react-esbuild/blob/965ef04827c4594fcfca12579e8165e42834c5a0/src/App.res#L18 to pass down properties ?
What I really want is like `let { color, …rest}`, which doesn’t work, alternative something like:
`type props = {...JsxDOM.domProps as dom, color: string};` and then pass dom(props).

Comments