|
@@ -14,6 +14,7 @@ class Html extends Component {
|
|
|
title: PropTypes.string,
|
|
|
description: PropTypes.string,
|
|
|
body: PropTypes.string.isRequired,
|
|
|
+ debug: PropTypes.bool.isRequired,
|
|
|
};
|
|
|
|
|
|
render() {
|
|
@@ -27,10 +28,10 @@ class Html extends Component {
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto" />
|
|
|
+ <script src={'/app.js?' + new Date().getTime()}></script>
|
|
|
</head>
|
|
|
<body>
|
|
|
<div id="app" dangerouslySetInnerHTML={{__html: this.props.body}} />
|
|
|
- <script src="/app.js"></script>
|
|
|
<GoogleAnalytics />
|
|
|
</body>
|
|
|
</html>
|