Files
exploRUGComponent/demo/index.html
2019-12-12 14:33:23 -08:00

19 lines
306 B
HTML

<!doctype html>
<html lang="en">
<head>
<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>