willow-example 0.1.1

Example webapp for willow
Documentation
<html>
	<head>
		<meta charset="utf-8" />
		<style>
html, body {
	overflow: hidden;
	margin: 0;
	height: 100%;
}
canvas {
	width: 100vw;
	height: 100vh;
	position: absolute;
	x: 0;
	y: 0;
}
		</style>
	<script>
		import("./pkg/willow_example.js")
			.then(mod => mod.default())
			.catch(console.error)
	</script>
	</head>
	<body>
		<canvas id="canvas" />
	</body>
</html>