<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<style>
body {
touch-action: none;
display: flex;
align-items: center;
justify-items: center;
align-self: center;
justify-self: center;
justify-content: center;
align-content: center;
height: 100%;
width: 100%;
flex-direction: column;
height: 100vh;
margin: 0px;
}
canvas {
}
</style>
</head>
<body>
<script type="module">
import init from './test.js';
init()
</script>
<canvas id="main-canvas">
</canvas>
</body>
</html>