yasirme's picture
Upload 21 files
1daa44a verified
raw
history blame
344 Bytes
import UIManager from "./components/uiManager.js";
import Navbar from "./components/navbar.js";
class App{
constructor(){
this.uiManager = new UIManager()
this.navbar = new Navbar(this.uiManager);
}
run(){
this.uiManager.run();
this.navbar.run();
}
}
const app = new App()
app.run();