2023-04-08 22:26:14 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en-US">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>wasm testing</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<script type="module">
|
2023-04-09 00:54:44 +00:00
|
|
|
// If you're getting build errors here | you need to run `just build_client_bundle` first, to compile client code
|
|
|
|
// v
|
|
|
|
import init, { greet } from "./dist/pkg";
|
2023-04-08 22:26:14 +00:00
|
|
|
|
|
|
|
init().then(() => {
|
|
|
|
greet("WebAssembly");
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|