8 lines
105 B
Plaintext
8 lines
105 B
Plaintext
|
package testfor
|
||
|
|
||
|
templ render(items []string) {
|
||
|
for _, item := range items {
|
||
|
<div>{ item }</div>
|
||
|
}
|
||
|
}
|