()
| 255 | } |
| 256 | |
| 257 | func makeNullVDom() *vdom.VDomElem { |
| 258 | return &vdom.VDomElem{WaveId: uuid.New().String(), Tag: vdom.WaveNullTag} |
| 259 | } |
| 260 | |
| 261 | func DefineComponent[P any](client *Client, name string, renderFn func(ctx context.Context, props P) any) vdom.Component[P] { |
| 262 | if name == "" { |
no test coverage detected