7 lines
154 B
TypeScript
7 lines
154 B
TypeScript
import { LitElement } from 'lit';
|
|
import { UmbElementMixin } from './element.mixin';
|
|
|
|
export class UmbLitElement extends UmbElementMixin(LitElement) {
|
|
|
|
}
|