import { html, css, LitElement } from "lit"; import { customElement, property, state } from "lit/decorators.js"; @customElement("my-element") export class MyElement extends LitElement { static styles = css` :host { display: block; border: solid 1px gray; padding: 16px; max-width: 800px; } `; @property() name = "World"; @state() count = 0; render() { return html`