-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
24 lines (24 loc) · 937 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mission control</title>
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<script src="//cdnjs.cloudflare.com/ajax/libs/redux/3.6.0/redux.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react/15.4.2/react.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react/15.4.2/react-dom.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react-redux/5.0.3/react-redux.min.js"></script>
</head>
<body>
<div id="view" class="layout-canvas"></div>
<script src="core/util.js"></script>
<script src="core/pluginHost.js"></script>
<script src="core/middleware.js"></script>
<script src="core/main.js"></script>
<script>
initialize();
</script>
</body>
</html>