Spaces:
Running
Running
File size: 505 Bytes
3bc1a5f 35b0691 74d03ae 3bc1a5f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
// 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(); |