learnlytics-go/templ/generator/test-style-attribute/template.templ
2025-03-20 12:35:13 +01:00

11 lines
257 B
Plaintext

package teststyleattribute
templ Button[T any](style T, text string) {
<button style={ style }>{ text }</button>
<button style={ getFunctionResult() }>{ text }</button>
}
func getFunctionResult() (string, error) {
return "background-color: red", nil
}