forked from prisma/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html.js
39 lines (36 loc) · 1.22 KB
/
html.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import React from 'react'
import PropTypes from 'prop-types'
export default function HTML(props) {
return (
<html {...props.htmlAttributes}>
<head>
<meta charSet="utf-8" />
{/* OneTrust Cookies Consent Notice start for prisma.io */}
<script
src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js"
data-document-language="true"
type="text/javascript"
charSet="UTF-8"
data-domain-script="22c2e2c0-3df0-4958-8672-1194370ee230"
></script>
<script type="text/javascript">function OptanonWrapper() {}</script>
{/* OneTrust Cookies Consent Notice end for prisma.io */}
<meta httpEquiv="x-ua-compatible" content="ie=edge" />
{props.headComponents}
</head>
<body {...props.bodyAttributes}>
{props.preBodyComponents}
<div key={`body`} id="___gatsby" dangerouslySetInnerHTML={{ __html: props.body }} />
{props.postBodyComponents}
</body>
</html>
)
}
HTML.propTypes = {
htmlAttributes: PropTypes.object,
headComponents: PropTypes.array,
bodyAttributes: PropTypes.object,
preBodyComponents: PropTypes.array,
body: PropTypes.string,
postBodyComponents: PropTypes.array,
}