-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
index.html
42 lines (35 loc) · 947 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
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>async-effect</title>
<style>
html {
font: 100%/1.2 Helvetica, Arial, sans-serif;
}
#status {
padding: 0.5rem;
}
#status.success {
background: #cf6;
}
#status.error {
background: #faa;
}
pre {
padding: 0.5rem;
background: #eee;
}
</style>
</head>
<body>
<h1>async side effect handling</h1>
<p>
<a href="https://github.com/thi-ng/umbrella/blob/master/examples/async-effect/src/index.ts">Source</a>
</p>
<div id="app"></div>
<script type="text/javascript" src="src/index.ts"></script>
</body>
</html>