forked from WatWowMap/ReactMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (51 loc) · 1.52 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Map</title>
<link rel="icon" href="/favicon.ico" />
</head>
<body>
<div id="loader" class="loader-flex">
<div
class="progress-root color-primary progress-indeterminate"
role="progressbar"
style="width: 40px; height: 40px"
>
<svg class="progress-svg" viewBox="22 22 44 44">
<circle
class="progress-circle circle-indeterminate"
cx="44"
cy="44"
r="20.2"
fill="none"
stroke-width="3.6"
></circle>
</svg>
</div>
<div style="height: 10px"></div>
<h4 id="loading-text" class="loading-text"></h4>
<noscript>
<h4 class="loading-text">This app requires JavaScript</h4>
</noscript>
</div>
<canvas id="holiday-canvas"></canvas>
<script type="module" crossorigin src="/loading.js"></script>
<div id="root"></div>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v6.4.0/css/all.css"
/>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>