blob: b0f16344403dddc3b08e89392b5fa6689404e4d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BCard Wasm Web App</title>
<script type="module">
import init from "../pkg/bcard_wasm_webapp.js"
init()
</script>
</head>
<body>
<noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript>
</body>
</html>
|