import { __ } from '@converse/headless/i18n'; import { html } from "lit-html"; import { repeat } from 'lit-html/directives/repeat.js'; import { modal_close_button, modal_header_close_button } from "./buttons" import spinner from "./spinner.js"; const i18n_info_title = __('Show more information on this groupchat'); const i18n_list_chatrooms = __('Query for Groupchats'); const i18n_open_title = __('Click to open this groupchat'); const i18n_query = __('Show groupchats'); const i18n_server_address = __('Server address'); const form = (o) => html`
`; const tpl_item = (o, item) => html`
  • ${item.name || item.jid}
  • `; export default (o) => html` `;