Rescript bindings for material ui.
This package is still under active development thus unstable api, breaking changes, bugs should be expected.
Here is a quick examples to get you started, it's all you need:
/* App.res */
@react.component
let make = () => {
<Mui.Box
sx=Css.sx([
Css.background(Css.rgb(200, 200, 200)),
Css.padding4(~top=Css.px(20), ~bottom=Css.px(20), ~left=Css.px(40), ~right=Css.px(40)),
])
>
{React.string("Material UI 5")}
</Mui.Box>
}
WIP
WIP
This project is licensed under the terms of the MIT license.