First upload

This commit is contained in:
2026-03-17 14:12:37 +01:00
commit c857900860
46 changed files with 3343 additions and 0 deletions

14
src/main.js Normal file
View File

@@ -0,0 +1,14 @@
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");
}
});
}