let component = ReasonReact.statelessComponent "About"; let make _children => { ...component, render: fun _self => {

(ReasonReact.stringToElement "This is the about page.")

} }; let jsComponent = ReasonReact.wrapReasonForJs ::component (fun _jsProps => make [||])