// @ts-check import { WebComponent, html } from "../../src/index.js"; export class Counter extends WebComponent { static props = { count: 123, }; static shadowRootInit = { mode: "open", }; get template() { const list = ["a", "b", "c", "what"]; const links = [ { url: "https://ayco.io", text: "Ayo Ayco", }, { url: "https://ayco.io/gh/McFly", text: "McFly", }, ]; return html`
${list.map((item) => html`

${item}

`)}

Links

`; } } customElements.define("my-counter", Counter);