33 lines
676 B
HTML
33 lines
676 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>PartsRS</title>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
|
|
/>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
canvas {
|
|
width: 100dvw !important;
|
|
height: 100dvh !important;
|
|
background: black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- canvas required by the Slint runtime -->
|
|
<canvas id="canvas"></canvas>
|
|
<script type="module">
|
|
// import the generated file.
|
|
import init from "./pkg/parts_rs_lib.js";
|
|
init();
|
|
</script>
|
|
</body>
|
|
</html>
|