-
-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (31 loc) · 641 Bytes
/
index.html
File metadata and controls
41 lines (31 loc) · 641 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Voyager 2</title>
<link href="./dist/style.css" rel="stylesheet">
<style>
html {
height: 100%;
}
body {
margin: 0;
padding: 0;
height: 100%;
}
#root {
height: 100%;
padding: 0;
}
</style>
</head>
<body>
<div id="root"></div>
<!-- Dependencies -->
<script src="./node_modules/react/dist/react.js"></script>
<script src="./node_modules/react-dom/dist/react-dom.js"></script>
<!-- Main -->
<script src="./dist/vendor.js"></script>
<script src="./dist/bundle.js"></script>
</body>
</html>