Initialized dev environment, readme and basic web component template

This commit is contained in:
2021-08-31 16:12:37 +03:00
commit 219a53a3bc
12 changed files with 165 additions and 0 deletions

13
demo/index.html Normal file
View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Testing my-component</title>
</head>
<body>
<my-component></my-component>
<script src="../src/my-component.ts" type="module"></script>
</body>
</html>