File size: 344 Bytes
1daa44a
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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();