@copilotkit/a2ui-renderer
Version:
A2UI Renderer for CopilotKit - render A2UI surfaces in React applications
17 lines (15 loc) • 496 B
JavaScript
//#region src/web-components/catalog/children.ts
function renderChildList(childList, buildChild) {
if (!Array.isArray(childList)) return [];
return childList.map((item) => {
if (item && typeof item === "object" && "id" in item) {
const node = item;
return buildChild(node.id, node.basePath);
}
if (typeof item === "string") return buildChild(item);
return null;
}).filter(Boolean);
}
//#endregion
exports.renderChildList = renderChildList;
//# sourceMappingURL=children.cjs.map