18 lines
346 B
HTML
18 lines
346 B
HTML
<html>
|
|
<head>
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import init from "./pkg/circle_canvas.js";
|
|
|
|
async function run() {
|
|
await init();
|
|
}
|
|
|
|
run();
|
|
</script>
|
|
<canvas id="canvas" height="150" width="150"></canvas>
|
|
</body>
|
|
</html>
|
|
|