UNPKG

@intenda/opus-ui-json-builder

Version:

Provides the `jsonBuilder` component type for use by Opus UI applications.

9 lines 219 B
const findParentComponentNode = node => { const { parentNode, obj } = node; if (obj.type !== undefined) return node; return findParentComponentNode(parentNode); }; export default findParentComponentNode;