diff options
author | metamuffin <metamuffin@disroot.org> | 2023-09-07 20:24:21 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-09-07 20:24:21 +0200 |
commit | f5fa4f7d58344c2dc722d1f37c1d7a008f6ee9b3 (patch) | |
tree | c7ac2a7497670745c73f927abf264d63a5a4805d /client-web/source/room_watches.ts | |
parent | 2d0761b8932f11b01e241e2db3a8f08250efe878 (diff) | |
download | keks-meet-f5fa4f7d58344c2dc722d1f37c1d7a008f6ee9b3.tar keks-meet-f5fa4f7d58344c2dc722d1f37c1d7a008f6ee9b3.tar.bz2 keks-meet-f5fa4f7d58344c2dc722d1f37c1d7a008f6ee9b3.tar.zst |
new element creation helper
Diffstat (limited to 'client-web/source/room_watches.ts')
-rw-r--r-- | client-web/source/room_watches.ts | 10 |
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 + ) +} |