blob: 9883fc872064c0c4b7052904effe39c315de8c34 (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
let globalStyles =
Printf.sprintf(
{js|
html, body, #root {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
background-color: %s;
}
* {
font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
box-sizing: border-box;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
|js},
Theme.Color.gray2,
);
[@react.component]
let make = (~children, ~script=?) => {
<html>
<head>
<meta charSet="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title> {React.string("Server Reason React demo")} </title>
<link
rel="shortcut icon"
href="https://reasonml.github.io/img/icon_50.png"
/>
<style
type_="text/css"
dangerouslySetInnerHTML={"__html": globalStyles}
/>
<link rel="stylesheet" href="/output.css" />
{switch (script) {
| None => React.null
| Some(src) => <script type_="module" src />
}}
</head>
<body> <div id="root"> children </div> </body>
</html>;
};
|