17 lines
No EOL
351 B
HTML
17 lines
No EOL
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> |