Skip to content

Instantly share code, notes, and snippets.

@fakenickels
Created January 21, 2018 23:34
Show Gist options
  • Save fakenickels/6a11825d607e0f25e0d9fafce1b88008 to your computer and use it in GitHub Desktop.
Save fakenickels/6a11825d607e0f25e0d9fafce1b88008 to your computer and use it in GitHub Desktop.
module MakeComponent = (Config: { let reactClass: ReasonReact.reactClass; let name: string; }) => {
let component = ReasonReact.statelessComponent(Config.name);
let make = children =>
ReasonReact.wrapJsForReason(
~reactClass=Config.reactClass,
~props={"yourProp": 123},
children
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment