-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<title>Frameworkless Web UI Examples</title>
<meta charset="utf8">
<link rel="stylesheet" href="src/style.css">
</head>
<body>
<main>
<header>
<h1>Frameworkless Web UI Examples</h1>
</header>
<nav>
<ol start="0">
<li><a href="src/examples/00_all/">All in One</a></li>
<li><a href="src/examples/01_counter/">Counter</a></li>
<li><a href="src/examples/02_synchronized_counters/">Synchronized Counters</a></li>
<li><a href="src/examples/03_synchronized_counter_list/">Synchronized List of Counters</a></li>
<li><a href="src/examples/04_card_game/">Card Game</a></li>
<li><a href="src/examples/05_order/">Order</a></li>
</ol>
</nav>
<footer>
Build with
<a href="https://lit-html.polymer-project.org/">lit-html</a> and
<a href="https://immerjs.github.io/immer/docs/introduction">Immer</a> using a
<a href="https://redux.js.org/">Redux</a>-like architecture.
</footer>
</main>
</body>
</html>