mirror of
https://github.com/prymitive/karma
synced 2026-05-07 03:26:52 +00:00
7 lines
220 B
JavaScript
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;
|
|
}
|