package templates // columns takes components and arranges them in columns templ columns(columns ...templ.Component) {
for _, column := range columns {
@column
}
} templ formField(label string, inputType string, name string, value string) {
} templ formFieldStatic(label string, inputType string, name string, value string) {
{ value }
}