blob: 331022d06fd8f73a00e57297d60bf812ee411e35 (
plain)
1
2
3
4
5
6
7
8
9
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
)
}
|