MCPcopy Create free account
hub / github.com/JimSchofield/minne / render

Method render

examples/testing-ref.ts:42–56  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

40 };
41
42 render() {
43 return html`
44 <div
45 ref=${(el: HTMLDivElement) => (this.ref = el)}
46 onsqueak-er=${() => console.log("squeak")}
47 aria-label=${null}
48 >
49 ${this.header}
50 <p .dataset=${{ foo: "bar", num: 42 }}>lorem</p>
51 <slot></slot>
52 <button .disabled=${this.isDisabled.value}>Disabled?</button>
53 <button onclick=${this.squeak}>squeak</button>
54 </div>
55 `;
56 }
57}
58
59declare global {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected