Initial commit

This commit is contained in:
tp-elements
2025-06-12 10:19:14 +02:00
commit 5ace1f43cb
6 changed files with 164 additions and 0 deletions

35
tp-element.js Normal file
View File

@ -0,0 +1,35 @@
/**
@license
Copyright (c) 2024 trading_peter
This program is available under Apache License Version 2.0
*/
import { LitElement, html, css } from 'lit';
class TpElement extends LitElement {
static get styles() {
return [
css`
:host {
display: block;
}
`
];
}
render() {
const { } = this;
return html`
`;
}
static get properties() {
return { };
}
}
window.customElements.define('tp-element', TpElement);