// Qa Lab plugin module implements main behavior. import "./styles.css"; import { createQaLabApp } from "./app.js"; const root = document.querySelector("#app"); if (!root) { throw new Error("QA Lab app root missing"); } void createQaLabApp(root);