-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 738 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>SystemJs/React Hello World</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./node_modules/systemjs/dist/system.src.js"></script>
<script src="./systemjs.config.js"></script>
</head>
<body>
<div id="main_react_container"></div>
<script>
System.import('./Main.js').catch(function (err) {
console.error(err);
});
</script>
</body>
</html>