learnlytics-go/templ/generator/test-import/template.templ

28 lines
264 B
Plaintext
Raw Normal View History

2025-03-20 12:35:13 +01:00
package testimport
templ listItem() {
<li>
{ children... }
</li>
}
templ list() {
<ul>
{ children... }
</ul>
}
templ main() {
@list() {
@listItem() {
<u>Item 1</u>
}
@listItem() {
<u>Item 2</u>
}
@listItem() {
<u>Item 3</u>
}
}
}