React - Higher Order Component (HOC)
About
Higher Order Component is a function that takes a component and returns a new component.
It's not really a component, more a design pattern known as decorator.
For composition, see React - Composite Component (Layout) / Container Component
Articles Related
Syntax
const EnhancedComponent = higherOrderComponent(WrappedComponent);
Example
- Relay’s createFragmentContainer
Management
Filter
https://github.com/facebook/react-devtools/pull/503