Files
exploRUGComponent/dev/index.html
2019-12-20 13:56:55 -08:00

21 lines
363 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>&lt;my-element> Demo</title>
<script type="module" src="../my-element.js"></script>
<style>
p {
border: solid 1px blue;
padding: 8px;
}
</style>
</head>
<body>
<my-element>
<p>This is child content</p>
</my-element>
</body>
</html>