Repository URL to install this package:
|
Version:
1.1.16 ▾
|
@skava/modules
/
___dist
/
view-container
/
styles
/
styled-components
/
src
/
utils
/
getComponentName.js
|
|---|
/**
* @todo dedupe reuse
*/
/* eslint-disable no-undef */
export default function getComponentName(target: ReactClass<any>): string {
return target.displayName || target.name || 'Component'
}