Skip to content

Instantly share code, notes, and snippets.

@dangdennis
Last active July 4, 2019 05:35
Show Gist options
  • Save dangdennis/6a76d61fc84c32d082990d10d7734191 to your computer and use it in GitHub Desktop.
Save dangdennis/6a76d61fc84c32d082990d10d7734191 to your computer and use it in GitHub Desktop.
/* SecondComponent.re */
let component = ReasonReact.statelessComponent("AnotherRandomComponent");
let make = (_children) => {
...component,
render: _self =>
<div>
<div> {ReasonReact.string("Your second ReasonReact component")} </div>
<FileName />
/* <FirstComponent /> */
</div>
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment