import { html, TemplateResult } from "lit"; export const listViewBuilder = ( items: T[], builder: (item: T, index: number) => TemplateResult ) => { return html` ${items?.map((n: any, i) => { return html`${builder(n, i)}`; })} `; };