-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 881 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DAWA API - Demo</title>
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css" />
</head>
<body>
<main id="app" class="container">
<section>
<h1>Dawa API - Demo</h1>
<article>
<input id="dawa-search-field" type="search" />
<ul id="dawa-result-list" class="result-list"></ul>
</article>
<article>
Selected:
<pre class="code" id="dawa-selected"></pre>
</article>
</section>
</main>
<script type="module" src="/src/demo.ts"></script>
</body>
</html>