Use a package like hoist-non-react-statics
to propagate statics to the higher order component.
React documentation reference: Static Methods Must Be Copied Over
Render props are an alternative way to extend components. Whereas higher order components extend behavior at component definition time, render props extend behavior at render time, which can be more flexible.
See the React documentation on renderprops.