Files
openclaw/extensions/qa-lab/web/src/main.ts
2026-06-04 21:59:00 -04:00

12 lines
268 B
TypeScript

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