Files
2026-07-13 13:16:30 +08:00

21 lines
527 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<title>OpenClaw</title>
</head>
<body>
<div id="root"></div>
<!-- Native event bridge receiver (§2.8) — must load before React -->
<script>
window.__oc = {
emit(type, data) {
window.dispatchEvent(new CustomEvent('native:' + type, { detail: data }));
}
};
</script>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>