package components type FormProps struct { Title string Method string Action string SubmitText string } templ Form(props FormProps) {
{ props.Title }
{ children... } @SubmitButton() { { props.SubmitText } }
}