aboutsummaryrefslogtreecommitdiff
path: root/client-web/source/room_watches.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client-web/source/room_watches.ts')
-rw-r--r--client-web/source/room_watches.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/client-web/source/room_watches.ts b/client-web/source/room_watches.ts
new file mode 100644
index 0000000..331022d
--- /dev/null
+++ b/client-web/source/room_watches.ts
@@ -0,0 +1,10 @@
+import { e } from "./helper.ts";
+
+export function ui_room_watches(): HTMLElement {
+ const listing = e("div", {})
+
+ return e("div", { class: "room-watches" },
+ e("h2", {}, "Known Rooms"),
+ listing
+ )
+}