import "./styles.css"; import { initApp } from "./app"; const container = document.querySelector("#app"); if (!container) { throw new Error("App container not found."); } initApp(container);