Skip to content

Instantly share code, notes, and snippets.

@lilactown
Created December 13, 2017 22:01
Show Gist options
  • Save lilactown/0894cc240fc77f76f2203f26fc521dcd to your computer and use it in GitHub Desktop.
Save lilactown/0894cc240fc77f76f2203f26fc521dcd to your computer and use it in GitHub Desktop.
module Components = {
module Box = {
let jsComponent = [%bs.raw
{|
({ children, ...props }) => React.createElement("box", props, children)
|}
];
let make = (~width, ~height, ~top, ~left, children) =>
ReasonReact.wrapJsForReason(
~reactClass=jsComponent,
~props={"top": top, "left": left, "width": width, "height": height},
children
);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment