yewprint/static/index.html

23 lines
342 B
HTML
Raw Normal View History

2020-09-03 16:45:38 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<script type="module">
2020-09-21 14:09:31 +02:00
import init from "/wasm.js";
2020-09-03 16:45:38 +02:00
init();
</script>
2020-09-21 14:09:31 +02:00
<link rel="stylesheet" href="/blueprint.css">
2020-09-03 18:40:42 +02:00
<style>
body {
margin: 0;
padding: 0;
}
2020-09-13 18:16:01 +02:00
.bp3-tree {
width: 350px;
}
2020-09-03 18:40:42 +02:00
</style>
2020-09-03 16:45:38 +02:00
</head>
<body></body>
</html>