package main script log(s string) { console.log(s) } templ hello(name string) {
Hello, { name }
} templ headerTemplate(name string) {

{ name }

} templ button(text string) { } templ component(testID string) {

text

@headerTemplate("Hayden") } templ page2() {

if 5 == 5 { "five is five" }

@component("testid-123") } templ spread(attrs templ.Attributes) {

Text

}