Files
karma/ui/__mocks__/react-onclickoutside.js
T

7 lines
220 B
JavaScript

// mock react-onclickoutside so we bypass it due to:
// TypeError: Cannot read property 'isReactComponent' of undefined
export default function onClickOutsideHOC(WrappedComponent, config) {
return WrappedComponent;
}