10 lines
182 B
HTML
10 lines
182 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<script type="module">
|
|
import { add } from "./build/release.js";
|
|
document.body.innerText = add(1, 2);
|
|
</script>
|
|
</head>
|
|
<body></body>
|
|
</html>
|