rsnext/examples/with-reasonml/pages/about.re
Adam Lane 3d9564215c example with-reasonml dependency updates (#5048)
The original example fails to compile on my windows machine but updating bs-platform fixes that.
Depending on bs-next causes example to fail (package compiled with old incompatible version of bs-platform) so I have included it in a bindings directory where it can serve as an example of reason bindings.
Sources have been migrated to the latest reason-react.
2018-09-03 01:38:54 +02:00

13 lines
327 B
ReasonML

let component = ReasonReact.statelessComponent("About");
let make = (_children) => {
...component,
render: (_self) =>
<div>
<Header />
<p> (ReasonReact.string("This is the about page.")) </p>
<Counter />
</div>
};
let default = ReasonReact.wrapReasonForJs(~component, (_jsProps) => make([||]));