Cleaning more stuff.

This commit is contained in:
John Livingston
2024-05-23 17:09:58 +02:00
committed by Mehdi Benadel
parent b72b23d6ae
commit 1d14bbbda0
6 changed files with 22 additions and 23 deletions

View File

@ -0,0 +1,10 @@
import { LitElement } from 'lit'
/**
* Base class for all Custom Elements.
*/
export class LivechatElement extends LitElement {
protected createRenderRoot = (): HTMLElement | DocumentFragment => {
return this
}
}