Advertisement
Guest User

Untitled

a guest
Sep 6th, 2014
748
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /** @jsx React.DOM */
  2. var React = require('react');
  3. module.exports = React.createClass({
  4.   render: function() {
  5.     return (
  6.       <html lang="en">
  7.       <head>
  8.         <meta charSet="UTF-8" />
  9.         <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0, minimal-ui" />
  10.         <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/pics/iocns/favicon-144x144.png" />
  11.         <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/pics/iocns/favicon-114x114.png" />
  12.         <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/pics/iocns/favicon-72x72.png" />
  13.         <link rel="shortcut icon" href="/pics/icons/favicon.png" />
  14.         <title>{this.props.pageTitle}</title>
  15.         <link rel="stylesheet" href={this.props.cssfile || '/webapp/build/css/index.css'} />
  16.       </head>
  17.       <body>
  18.       {this.props.children}
  19.       </body>
  20.       </html>
  21.     );
  22.   }
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement