MCPcopy Create free account
hub / github.com/UI5/webcomponents / jsx

Function jsx

packages/base/src/jsx-runtime.ts:47–51  ·  view source on GitHub ↗
(type: string | typeof UI5Element, props: Record<string, any>, key: string)

Source from the content-addressed store, hash-verified

45 return _Fragment(props, context);
46}
47export 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}
52export function jsxs(type: string | typeof UI5Element, props: Record<string, any>, key: string): VNode<any> {
53 const tag = preprocess(type, props, key);
54

Callers 1

jsxRendererFunction · 0.90

Calls 1

preprocessFunction · 0.90

Tested by

no test coverage detected