-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 979 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-us">
<head>
<title>web components test</title>
<meta charset="utf-8">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<script type="text/javascript" src="node_modules/@webcomponents/webcomponentsjs/webcomponents-lite.js"></script>
</head>
<body>
<c3-demo-app>
<c3-sidebar></c3-sidebar>
<counter-toggler>
<binary-counter counter="2"></binary-counter>
</counter-toggler>
more binary togglers:
<counter-toggler>
<binary-counter counter="2"></binary-counter>
</counter-toggler>
</c3-demo-app>
<script type="module" src="app/c3-demo-app.js"></script>
<script type="module" src="components/c3-sidebar/c3-sidebar.js"></script>
<script type="module" src="components/counter-toggler/counter-toggler.js"></script>
<script type="module" src="components/binary-counter/binary-counter.js"></script>
</body>
</html>