Files
openclaw/extensions/qa-lab/web/src/main.ts
2026-04-05 23:21:56 +01:00

11 lines
218 B
TypeScript

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);