blob: 21f35d4f1a7956693c838f1963cdbb08fbb2b8d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" href="./favicon.ico" type="image/png" />
<link rel="stylesheet" href="./bulma.min.css" />
<title>BCard Wasm Web App</title>
</head>
<body>
<script type="module">
Error.stackTraceLimit = Infinity;
import init from "../pkg/bcard_wasm_webapp.js";
init();
</script>
<noscript>This page contains webassembly and javascript content, please enable javascript in your
browser.</noscript>
</body>
</html>
|