import { html } from 'lit'
export const counter = (count: number) => html`
<p>Count: ${count}</p>
<button id="inc">+</button>
<button id="dec">−</button>
`
Lit Micro-App
Count
0
import { html } from 'lit'
export const counter = (count: number) => html`
<p>Count: ${count}</p>
<button id="inc">+</button>
<button id="dec">−</button>
`