xmpp.chapril.org-conversejs/src/components/element.js

10 lines
188 B
JavaScript
Raw Normal View History

import { LitElement } from 'lit-element';
export class CustomElement extends LitElement {
createRenderRoot () {
// Render without the shadow DOM
return this;
}
}