Table of Contents

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.

Syntax

const EnhancedComponent = higherOrderComponent(WrappedComponent);

Example

Management

Filter

https://github.com/facebook/react-devtools/pull/503

Documentation / Reference