vector-im-hydrogen-web/src/ui/web/session/RoomPlaceholderView.js

20 lines
369 B
JavaScript
Raw Normal View History

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() {}
}