UUUUPPPPP work

This commit is contained in:
2026-03-25 02:03:59 +01:00
parent c857900860
commit df8bd891a2
32 changed files with 1126 additions and 233 deletions

View File

@@ -1,14 +1,6 @@
import App from "./App.js";
import "./app.css";
const root = document.getElementById("app");
root.appendChild(App());
if (import.meta.hot) {
import.meta.hot.accept("./App.js", (newModule) => {
if (newModule) {
root.innerHTML = "";
root.appendChild(newModule.default());
console.log("🚀 SigPro: App re-renderizada");
}
});
}
import { $ } from './sigpro.js';
import { UI } from './sigpro-ui.js';
import {App} from './App.js';
import './app.css';
UI($, 'es');
$.mount(App, '#app');