(WrappedComponent)
| 3 | import { isMemo } from 'react-is'; |
| 4 | |
| 5 | function getDisplayName(WrappedComponent) { |
| 6 | return WrappedComponent.displayName || WrappedComponent.name || 'WrappedComponent'; |
| 7 | } |
| 8 | |
| 9 | export function argumentContainer(Container, WrappedComponent) { |
| 10 | /* eslint no-param-reassign:0 */ |