this repo has no description
1<!doctype html>
2<html lang="en">
3 <head>
4 <title>ATProtoCall</title>
5 <meta charset="utf8" />
6 <meta name="viewport" content="width=device-width, initial-scale=1" />
7 <link rel="stylesheet" href="./style.css" />
8 <script src="./vendor/importmap.js"></script>
9 </head>
10 <body>
11 <div id="app"></div>
12 <script type="module">
13 await navigator.serviceWorker.register("./atsw.js", { type: "module" });
14 await navigator.serviceWorker.ready;
15
16 import { render } from "preact";
17 import { html } from "htm/preact";
18 import { App } from "./app.js";
19 render(html`<${App} />`, document.getElementById("app"));
20 </script>
21 </body>
22</html>