ybbond-reason

My old site written in ReasonReact
Log | Files | Refs | README | LICENSE | CC-LICENSE

Template.re (215B)


      1 let make = (~content, ~title, ()) => {j|
      2   <!DOCTYPE html>
      3     <html>
      4       <head>
      5         <title>$title</title>
      6       </head>
      7       <body>
      8         <div id="react-root">$content</div>
      9       </body>
     10     </html>
     11 |j};