Sign in
chromium
/
devtools
/
devtools-frontend
/
bedbd4f3fe201caedff255ae97fdf875e13063f8
/
.
/
node_modules
/
rollup-plugin-minify-html-template-literals
/
test
/
expected
/
default.js
blob: 96dc69e2a7241ecd73d2c24ff1706ee3d766a4b4 [
file
]
const
template
=
()
=>
html
`<
style
>.
heading
{
color
:#
00f
}<
/style><h1 class="heading">${title}</
h1
><
ul
>
$
{
items
.
map
(
item
=>
{
return
getHTML
()`<
li
>
$
{
item
}</
li
>`
})}</
ul
>`;
export
{
template
};