mirror of
https://github.com/haileys/mixlab.git
synced 2026-06-16 12:59:40 +02:00
17 lines
304 B
HTML
17 lines
304 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Mixlab</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
<script src="/app.js"></script>
|
|
<script>
|
|
wasm_bindgen("/app.wasm").then(() => {
|
|
wasm_bindgen.start();
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
Loading...
|
|
</body>
|
|
</html>
|