chore: Init package

This commit is contained in:
Fándly Gergő
2021-01-05 17:03:18 +02:00
commit 6362a7fde9
8 changed files with 6349 additions and 0 deletions

15
src/index.html Normal file
View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
<meta charset="utf-8" />
<script src="./index.js"></script>
</head>
<body>
<p>Test</p>
<p id="test"></p>
<script>
ui.doTest();
</script>
</body>
</html>

3
src/script/index.js Normal file
View File

@ -0,0 +1,3 @@
export const doTest = () => {
document.getElementById('test').innerHTML = 'test';
};