mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
8 lines
298 B
JavaScript
8 lines
298 B
JavaScript
/**
|
|
* Taken from react-router (https://github.com/reactjs/react-router/blob/master/modules/withRouter.js)
|
|
* FIXME: should be put into react-component's utils
|
|
*/
|
|
export function getDisplayName(WrappedComponent) {
|
|
return WrappedComponent.displayName || WrappedComponent.name || 'Component';
|
|
}
|