(text string)
| 68 | } |
| 69 | |
| 70 | func TextElem(text string) VDomElem { |
| 71 | return VDomElem{Tag: TextTag, Text: text} |
| 72 | } |
| 73 | |
| 74 | func mergeProps(props *map[string]any, newProps map[string]any) { |
| 75 | if *props == nil { |
no outgoing calls
no test coverage detected