This commit is contained in:
2026-01-12 14:34:56 +00:00
parent 2b87d63121
commit 2d4846cfed
12 changed files with 1173 additions and 566 deletions

View File

@@ -13,15 +13,3 @@ import './elements/ecoos-logs.js';
// Export the main app component
export { EcoosApp } from './elements/ecoos-app.js';
// Create and mount the app when DOM is ready
function init() {
const app = document.createElement('ecoos-app');
document.body.appendChild(app);
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', init);
} else {
init();
}