import xss from "xss/dist/xss"; import { __ } from 'i18n'; import { html } from "lit-html"; import { modal_header_close_button } from "modals/templates/buttons.js" import { unsafeHTML } from "lit-html/directives/unsafe-html.js"; const nickname_input = (o) => { const i18n_nickname = __('Nickname'); const i18n_required_field = __('This field is required'); return html`
`; } export default (o) => { const i18n_join = __('Join'); const i18n_enter = __('Enter a new Groupchat'); return html` `; }