27 lines
433 B
HTML
27 lines
433 B
HTML
|
<!doctype html>
|
||
|
<html lang="en-GB">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<style>
|
||
|
body {
|
||
|
background: #fafafa;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="demo"></div>
|
||
|
|
||
|
<script type="module">
|
||
|
import { html, render } from 'lit';
|
||
|
import '../dist/src/pendor-clock.js';
|
||
|
render(
|
||
|
html`
|
||
|
<pendor-clock>
|
||
|
</pendor-clock>
|
||
|
`,
|
||
|
document.querySelector('#demo')
|
||
|
);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|