Last active
July 4, 2019 05:35
-
-
Save dangdennis/6a76d61fc84c32d082990d10d7734191 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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