-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 810 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 810 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
<!DOCTYPE html>
<html>
<head>
<title>React Boilerplate</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-theme.css" rel="stylesheet">
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
var readyForMainLoad;
System.trace = true;
readyForMainLoad = System.import('systemjs-hot-reloader').then(function(HotReloader) {
hr = new HotReloader.default('http://localhost:9111'); // chokidar-socket-emitter port
});
Promise.resolve(readyForMainLoad).then(function() {
System.import('src/main');
});
</script>
</head>
<body>
<div id="app"></div>
</body>
</html>