-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.dev.html
27 lines (27 loc) · 912 Bytes
/
index.dev.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello World!</title>
</head>
<body>
<div id="root"></div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/system.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/extras/transform.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/babel-transform.js"></script>
<script type="systemjs-importmap">
{
"imports": {
"app":"/app.js",
"app/":"/app/",
"dep/ramda": "https://jspm.dev/[email protected]",
"dep/xterm": "https://jspm.dev/[email protected]",
"dep/react": "https://jspm.dev/[email protected]",
"dep/react-dom": "https://jspm.dev/[email protected]"
}
}
</script>
<script src="/dev.js"></script>
<script src="/index.js"></script>
</body>
</html>