mirror of
https://github.com/danbulant/ester_os
synced 2026-07-05 19:11:03 +00:00
Sample files for testing configs
This commit is contained in:
parent
84556e09fe
commit
95514067c7
2 changed files with 18 additions and 0 deletions
9
client/src/index.ts
Normal file
9
client/src/index.ts
Normal 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
9
client/static/index.html
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Ester OS</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script src="main.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in a new issue