Skip to content

Instantly share code, notes, and snippets.

@djyde

djyde/block1.re Secret

Created February 27, 2018 08:23
Show Gist options
  • Save djyde/62e03cd89b89061c7a98b9cccb47a0f7 to your computer and use it in GitHub Desktop.
Save djyde/62e03cd89b89061c7a98b9cccb47a0f7 to your computer and use it in GitHub Desktop.
/* src/Greeting.re */
let component = ReasonReact.statelessComponent("Greeting");
let make = (~name, _children) => {
...component,
render: _self =>
<div>
{ReasonReact.stringToElement("Hello! " ++ name)}
</div>
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment