(type: string | typeof UI5Element, props: Record<string, any>, key: string)
| 45 | return _Fragment(props, context); |
| 46 | } |
| 47 | export function jsx(type: string | typeof UI5Element, props: Record<string, any>, key: string): VNode<any> { |
| 48 | const tag = preprocess(type, props, key); |
| 49 | |
| 50 | return _jsx(tag, props, key) as VNode<any>; |
| 51 | } |
| 52 | export function jsxs(type: string | typeof UI5Element, props: Record<string, any>, key: string): VNode<any> { |
| 53 | const tag = preprocess(type, props, key); |
| 54 |
no test coverage detected