(Container, WrappedComponent)
| 7 | } |
| 8 | |
| 9 | export function argumentContainer(Container, WrappedComponent) { |
| 10 | /* eslint no-param-reassign:0 */ |
| 11 | Container.displayName = `Form(${getDisplayName(WrappedComponent)})`; |
| 12 | Container.WrappedComponent = WrappedComponent; |
| 13 | return hoistStatics(Container, WrappedComponent); |
| 14 | } |
| 15 | |
| 16 | export function identity(obj) { |
| 17 | return obj; |
no test coverage detected