-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 2.37 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
44
<!DOCTYPE html>
<html lang="en_US">
<head>
<meta charset="UTF-8"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<style type="text/css">
@media (prefers-color-scheme: light) { html { background-color: #fff; } }
@media (prefers-color-scheme: dark) { html { background-color: #333; } }
</style>
<script async src="/node_modules/es-module-shims/dist/es-module-shims.js"></script>
</head>
<body>
<script type="importmap">
{
"imports": {
"@twuni/ui-action-card": "/node_modules/@twuni/ui-action-card/lib/esm/index.mjs",
"@twuni/ui-button": "/node_modules/@twuni/ui-button/lib/esm/index.mjs",
"@twuni/ui-card": "/node_modules/@twuni/ui-card/lib/esm/index.mjs",
"@twuni/ui-checkbox": "/node_modules/@twuni/ui-checkbox/lib/esm/index.mjs",
"@twuni/ui-code": "/node_modules/@twuni/ui-code/lib/esm/index.mjs",
"@twuni/ui-drawer": "/node_modules/@twuni/ui-drawer/lib/esm/index.mjs",
"@twuni/ui-grid": "/node_modules/@twuni/ui-grid/lib/esm/index.mjs",
"@twuni/ui-input": "/node_modules/@twuni/ui-input/lib/esm/index.mjs",
"@twuni/ui-list": "/node_modules/@twuni/ui-list/lib/esm/index.mjs",
"@twuni/ui-panel": "/node_modules/@twuni/ui-panel/lib/esm/index.mjs",
"@twuni/ui-pill": "/node_modules/@twuni/ui-pill/lib/esm/index.mjs",
"@twuni/ui-scrollable": "/node_modules/@twuni/ui-scrollable/lib/esm/index.mjs",
"@twuni/ui-status": "/node_modules/@twuni/ui-status/lib/esm/index.mjs",
"@twuni/ui-swatch": "/node_modules/@twuni/ui-swatch/lib/esm/index.mjs",
"@twuni/ui-theme-standard": "/node_modules/@twuni/ui-theme-standard/lib/esm/index.mjs",
"@twuni/ui-title": "/node_modules/@twuni/ui-title/lib/esm/index.mjs",
"@twuni/ui-typography": "/node_modules/@twuni/ui-typography/lib/esm/index.mjs",
"htm": "/node_modules/htm/dist/htm.mjs",
"htm/preact": "/node_modules/htm/preact/index.mjs",
"preact": "/node_modules/preact/dist/preact.mjs",
"preact/hooks": "/node_modules/preact/hooks/dist/hooks.mjs",
"router-preact": "/node_modules/router-preact/lib/esm/index.mjs",
"stylish-preact": "/node_modules/stylish-preact/lib/esm/index.mjs"
}
}
</script>
<script src="/src/index.mjs" type="module"></script>
</body>
</html>