Reason bindings for Next.js v6.
Bindings are provided for the only two components provided by Next.js:
let component = ReasonReact.statelessComponent("Index");
let make = (_children) => {
...component,
render: (_self) =>
<div>
<Next.Head>
<title> (ReasonReact.stringToElement("My Page Title")) </title>
</Next.Head>
<Next.Link href="/about">
<a> (ReasonReact.stringToElement("About")) </a>
</Next.Link>
</div>
}