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

Function jsxs

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

Source from the content-addressed store, hash-verified

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
55 return _jsxs(tag, props, key) as VNode<any>;
56}
57export { type jsxDEV };
58
59export type ComponentChild =

Callers

nothing calls this directly

Calls 1

preprocessFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…