-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
29 lines (26 loc) · 1004 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
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>react / ts / jspm - starter kit</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.0.28/css/bulma.min.css">
</head>
<body>
<div id="app-container"></div>
<!-- app initialize -->
<script src="/jspm_packages/system.js"></script>
<script src="/jspm.config.js"></script>
<script type="text/javascript">
if (location.origin.match(/localhost/)) {
System.trace = true;
System.import('systemjs-hot-reloader').then(function(HotReloader) {
new HotReloader.default('http://localhost:8888'); // chokidar-socket-emitter port
});
}
System.import('src/app');
</script>
</body>
</html>