blob: f4c045053bea15983b3cf9bec75b821e9f467973 [file]
const template = () => html`
<style>
.heading {
color: blue;
}
</style>
<h1 class="heading">${title}</h1>
<ul>
${items.map(item => {
return getHTML()`
<li>${item}</li>
`
})}
</ul>
`
export { template }