tp-table/tp-text-filter.js

36 lines
530 B
JavaScript
Raw Normal View History

2022-06-17 14:54:06 +02:00
/**
@license
Copyright (c) 2022 trading_peter
This program is available under Apache License Version 2.0
*/
import { LitElement, html, css } from 'lit';
2022-06-17 16:13:55 +02:00
class TpTextFilter extends LitElement {
2022-06-17 14:54:06 +02:00
static get styles() {
return [
css`
:host {
display: block;
}
`
];
}
render() {
const { } = this;
return html`
2022-06-17 16:13:55 +02:00
<h1>Test</h1>
<p>No</p>
2022-06-17 14:54:06 +02:00
`;
}
static get properties() {
return { };
}
}
2022-06-17 16:13:55 +02:00
window.customElements.define('tp-text-filter', TpTextFilter);