import './components/app-base.js'; import './components/main-window.js'; import './components/custom-button.js'; import './components/item-list.js'; class App { constructor(root, text, store) { this.root = root; } start() { this.root.innerHTML = ` `; } } const app = new App(document.getElementById('root')); app.start();