-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 1.16 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!--
JSPM Generator Import Map
Edit URL: https://generator.jspm.io/#U2NhYGBkDM0rySzJSU1hKKrIKnYw1zPUMwAAWj0OrxkA
-->
<script type="importmap">
{
"imports": {
"rxjs": "https://ga.jspm.io/npm:rxjs@7.1.0/dist/esm5/index.js"
},
"scopes": {
"https://ga.jspm.io/npm:rxjs@7.1.0/": {
"tslib": "https://ga.jspm.io/npm:tslib@2.1.0/tslib.es6.js"
}
}
}
</script>
<!-- ES Module Shims: Import maps polyfill for modules browsers without import maps support (all except Chrome 89+) -->
<script
async
src="https://ga.jspm.io/npm:es-module-shims@0.12.1/dist/es-module-shims.min.js"
></script>
<div id="app"></div>
<label for="duration">Duration</label>
<input id="timer-input" type="number" />
<button id="start-button">Start timer</button>
<button id="reset-button">Reset timer</button>
<p id="time-text"></p>
<script type="module" src="index.js"></script>
</body>
</html>