17 lines
351 B
HTML
17 lines
351 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en-US">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>wasm testing</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<script type="module">
|
||
|
import init, { greet } from "../client/pkg";
|
||
|
|
||
|
init().then(() => {
|
||
|
greet("WebAssembly");
|
||
|
})
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|