rsnext/examples/with-react-intl/lib/withIntl.js
Tim Neutkens 9c4eefcdbf
Add prettier for examples directory (#5909)
* Add prettier for examples directory

* Fix files

* Fix linting

* Add prettier script in case it has to be ran again
2018-12-17 17:34:32 +01:00

11 lines
348 B
JavaScript

import hoistNonReactStatics from 'hoist-non-react-statics'
import { injectIntl } from 'react-intl'
export const hoistStatics = higherOrderComponent => BaseComponent => {
const NewComponent = higherOrderComponent(BaseComponent)
hoistNonReactStatics(NewComponent, BaseComponent)
return NewComponent
}
export default hoistStatics(injectIntl)