This repository was archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.29 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.29 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" type="image/svg+xml" href="/logo.svg" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#8e14cb" />
<link rel="manifest" href="/manifest.json" />
<meta name="application-name" content="Device Simulator UI" />
<meta name="msapplication-TileColor" content="#00A9CE" />
<title>Device Simulator UI</title>
<link
rel="stylesheet"
type="text/css"
href="/node_modules/bootstrap/dist/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
type="text/css"
href="/node_modules/leaflet/dist/leaflet.css"
/>
<link
rel="stylesheet"
type="text/css"
href="/node_modules/inter-ui/inter-hinted.css"
/>
<link rel="stylesheet" type="text/css" href="/index.css" />
</head>
<body>
<div id="root"></div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script type="module" src="/src/index.tsx"></script>
<script
type="module"
src="/node_modules/bootstrap/dist/js/bootstrap.min.js"
></script>
<script type="module" src="/node_modules/leaflet/dist/leaflet.js"></script>
</body>
</html>