mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-15 19:21:08 +00:00
11 lines
218 B
TypeScript
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);
|