<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
<title>Keyhive Test Page</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="./main.ts"></script>
<script type="module">
import init, * as keyhive from './pkg/keyhive_wasm.js';
async function run() {
await init();
window.keyhive = keyhive;
}
run();
</script>
</body>
</html>