import { html, LitElement } from "lit"; import { customElement, property, query } from "lit/decorators.js"; @customElement("my-app") export class MyApp extends LitElement { @property() amount = "5"; // <-- Pass in a value for the number of rectangles to create @query("#count") countInput!: HTMLInputElement; render() { return html`
Count: