Sample files for testing configs

This commit is contained in:
danbulant 2020-02-15 17:31:42 +01:00
parent 84556e09fe
commit 95514067c7
2 changed files with 18 additions and 0 deletions

9
client/src/index.ts Normal file
View file

@ -0,0 +1,9 @@
function component() {
const element = document.createElement('div');
element.innerHTML = "Ester OS";
return element;
}
document.body.appendChild(component());

9
client/static/index.html Normal file
View file

@ -0,0 +1,9 @@
<!doctype html>
<html>
<head>
<title>Ester OS</title>
</head>
<body>
<script src="main.js"></script>
</body>
</html>