package main import "strconv" templ counts(global, user int) {
Global: { strconv.Itoa(global) }
User: { strconv.Itoa(user) }
} templ form() {
} templ page(global, user int) { Counts

Counts

@counts(global, user) @form()
}