-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (22 loc) · 982 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>
<head>
<title>auth0-element demo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script>if (!window.customElements) { document.write('<!--'); }</script>
<script type="text/javascript" src="node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js"></script>
<!--! do not remove -->
<script type="module" src="../build/js/my-element.min.js"></script>
<!--<script type="module" src="../dist/build.js"></script>-->
<!--<script type="module" src="./my-element.js"></script>-->
</head>
<body>
<div class="vertical-section-container centered">
<h3>A Custom LitElement</h3>
<my-element bar="5" whales="4"></my-element>
</div>
</body>
</html>