Convert to object oriented ES6 syntax

This commit is contained in:
Joshua Seigler 2019-04-05 22:05:42 -04:00
parent 4906aeb0b5
commit c09369a7dc
5 changed files with 175 additions and 179 deletions

5
app/main.js Normal file
View file

@ -0,0 +1,5 @@
import App from './App';
document.addEventListener('DOMContentLoaded', () => {
new App();
});