Files
karma/ui/__mocks__/react-onclickoutside.js
2018-08-23 21:46:43 +01:00

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;
}