Esmx Hub
src/lit-app.ts
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
Lit Rspack SSR
source · examples/micro-app/ssr-micro-lit/src/lit-app.ts