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

23 lines
255 B
Plaintext
Raw Normal View History

2025-03-20 12:35:13 +01:00
package testtemplelement
import "fmt"
templ wrapper(index int) {
<div id={ fmt.Sprint(index) }>
{ children... }
</div>
}
templ template() {
@wrapper(1) {
child1
@wrapper(2) {
child2
@wrapper(3) {
child3
@wrapper(4)
}
}
}
}