Reality123b's picture
Update application/static/js/script.js
74d03ae verified
raw
history blame
505 Bytes
// application/static/js/script.js
console.log("script.js loaded and running!");
alert("script.js loaded and running!"); // Add an alert
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();