initial commit

This commit is contained in:
2021-01-22 11:32:40 +01:00
commit 4a53f21281
13 changed files with 443 additions and 0 deletions

9
js/controller.js Normal file
View File

@@ -0,0 +1,9 @@
class Controller {
constructor() {
this.init();
}
init() {
console.log("here");
}
}

1
js/main.js Normal file
View File

@@ -0,0 +1 @@
const app = new Controller();