change to lit-html

This commit is contained in:
Fran Jurmanović
2021-06-11 18:30:01 +02:00
parent f03d407590
commit 47f6207798
28 changed files with 38 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
import { html, render, TemplateResult } from "@github/jtml";
import { html, render, TemplateResult } from "lit-html";
import {
AppLoaderElement,
AppMainElement,
@@ -80,7 +80,7 @@ class BaseElement extends HTMLElement {
});
};
render = (): TemplateResult => {
render = (): TemplateResult | Temp => {
return html``;
};