reorganize files

This commit is contained in:
Géry Debongnie
2019-01-22 19:25:12 +01:00
parent 5652ef65ad
commit 3766fbc7b8
101 changed files with 31 additions and 43 deletions
+9
View File
@@ -0,0 +1,9 @@
///<amd-module name="main" />
import RootWidget from "./widgets/RootWidget";
import env from "./env";
document.addEventListener("DOMContentLoaded", async function() {
const rootWidget = new RootWidget(env);
await rootWidget.mount(document.body);
});