joyent-portal/consoles/my-joy-images/src/html.js

29 lines
656 B
JavaScript
Raw Normal View History

2018-04-24 16:17:26 +03:00
const React = require('react');
2018-05-07 15:33:08 +03:00
module.exports = ({
htmlAttrs = {},
bodyAttrs = {},
head = [],
children = null
}) => (
2018-04-24 16:17:26 +03:00
<html {...htmlAttrs}>
<head>
2018-05-07 15:33:08 +03:00
<meta charSet="utf-8" />
<meta httpEquiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<meta name="theme-color" content="#1E313B" />
2018-05-07 15:33:08 +03:00
2018-04-24 16:17:26 +03:00
{head}
</head>
<body {...bodyAttrs}>
<div id="header" />
2018-05-07 15:33:08 +03:00
{!children ? <div id="root" /> : null}
2018-04-24 16:17:26 +03:00
{children}
<script src="/navigation/static/main.js" />
</body>
</html>
);