@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
8 lines • 399 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getChildRef = void 0;
const getChildRef = (children) => Object.prototype.propertyIsEnumerable.call(children.props, "ref")
? children.props.ref // React 19 (children.ref still works, but gives a warning)
: children.ref; // React <19
exports.getChildRef = getChildRef;
//# sourceMappingURL=getChildRef.js.map