let component = ReasonReact.statelessComponent("Index"); let make = (_children) => { ...component, render: (_self) =>

(ReasonReact.stringToElement("HOME PAGE is here!"))

}; let default = ReasonReact.wrapReasonForJs(~component, (_jsProps) => make([||]));