github-reason-react-tutorial
github-reason-react-tutorial copied to clipboard
Typo in your blog?
You have this:
let repoItem =
switch (self.state.repoData) {
| Some(repo) => <RepoItem repo=repo />
| None => ReasonReact.stringToElement("Loading")
};
<div className="App">
**<h1>{ReasonReact.stringToElement("Reason Projects")</h1>**
repoItem
</div>
}
- should be this?
render: (self) => {
let repoItem =
switch (self.state.repoData) {
| Some(repo) => <RepoItem repo=repo />
| None => ReasonReact.stringToElement("Loading")
};
<div className="App">
**<h1>{ReasonReact.stringToElement("Reason Projects")}</h1>**
repoItem
</div>
}