This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import hoistNonReactStatics from 'hoist-non-react-statics' | |
// Returns the components name. If a name cannot be determined, "Component" is | |
// used. | |
const getComponentName = Component => | |
Component.displayName || Component.name || 'Component' | |
// Higher order component that automatically applies default props to the | |
// wrapped component. |