Sign in
chromium
/
devtools
/
devtools-frontend
/
ec00a13ce62ddc9f5697a4e4d30dfcafaacd9fc2
/
.
/
node_modules
/
rollup-plugin-minify-html-template-literals
/
test
/
fixtures
/
default.js
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
}