(id: string)
| 21 | } |
| 22 | |
| 23 | function button(id: string): VNode { |
| 24 | return { kind: "button", props: { id, label: id } }; |
| 25 | } |
| 26 | |
| 27 | function text(value: string): VNode { |
| 28 | return { kind: "text", text: value, props: {} }; |
no outgoing calls
no test coverage detected