lit element base

This commit is contained in:
Niels Lyngsø
2023-01-02 16:11:23 +01:00
parent c337d272b4
commit 35ef653c0b

View File

@@ -0,0 +1,6 @@
import { LitElement } from 'lit';
import { UmbElementMixin } from './element.mixin';
export abstract class UmbLitElement extends UmbElementMixin(LitElement) {
}