w )5.-UFNQMBUFT
WJB+BWB4DSJQUUFNQMBUFMJUFSBMT
MJUIUNM 1PMZNFS-BCT
import {html, render} from ‘./node_modules/lit-html/lit-html.js’;
import {repeat} from ‘./node_modules/lit-html/lib/repeat.js’;
const items = [{id: 1, name: ‘foo’}, {id: 2, name: ‘bar’}];
render(
html`
${repeat(items, (item) => item.id, (item) =>
html`- ${item.name}
`
}
`,
document.querySelector(‘items’)
);