Add /dev/index.html for local dev. Update README

This commit is contained in:
Justin Fagnani
2019-12-20 10:48:53 -08:00
committed by Justin Fagnani
parent fe5a424bee
commit 9d33e2436d
6 changed files with 34 additions and 2 deletions

20
dev/index.html Normal file
View File

@@ -0,0 +1,20 @@
<!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>