-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 710 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Lit + TS</title>
<link rel="stylesheet" href="./src/index.css" />
<script type="module" src="/src/my-element.ts"></script>
<script type="module" src="/src/components/test/test.component.ts"></script>
<script type="module" src="/src/components/icons/icon.ts"></script>
</head>
<body>
<dwc-icon name="ArrowExchange" class="text-red-900" ></dwc-icon>
<!-- <my-element>
<h1>Vite + Lit</h1>
</my-element>
<test-component/> -->
</body>
</html>