UNPKG

hoist-react-statics

Version:

Dont forget to hoist all props from a base component

10 lines (8 loc) 353 B
import hoistNonReactStatic from 'hoist-non-react-statics' const hoistReactStatic = (targetComponent, sourceComponent) => { hoistNonReactStatic(targetComponent, sourceComponent); targetComponent.WrappedComponent = sourceComponent; targetComponent.propTypes = sourceComponent.propTypes; return targetComponent; } export default hoistReactStatic;