Spaces:
Running
Running
// 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(); |