summaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/index.js b/src/index.js
index 775b3af..a73afa3 100644
--- a/src/index.js
+++ b/src/index.js
@@ -15,11 +15,11 @@
*/
/* JS */
-import { init, launch } from './js/app.js';
+import * as app from './js/app.js';
/* CSS */
import './styles/app.scss';
-window.launch = launch;
+window.app = app;
-document.addEventListener('DOMContentLoaded', init); \ No newline at end of file
+document.addEventListener('DOMContentLoaded', app.init); \ No newline at end of file