import {tag} from "../general/html.js"; export class RoomPlaceholderView { constructor() { this._root = null; } mount() { this._root = tag.div({className: "RoomPlaceholderView"}, tag.h2("Choose a room on the left side.")); return this._root; } root() { return this._root; } unmount() {} update() {} }