package components import "github.com/LazyBachelor/LazyPM/pkg/web/components/base" type AssigneeFormProps struct { PatchAction string Assignee string } templ AssigneeForm(props AssigneeFormProps) {
if props.Assignee != "" {

Current assignee: { props.Assignee }

}
}