Repository URL to install this package:
|
Version:
1.2.16 ▾
|
@skava/modules
/
___dist
/
view-container
/
styles
/
styled-components
/
src
/
utils
/
getComponentName.js
|
|---|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = getComponentName;
/**
* @todo dedupe reuse
*/
/* eslint-disable no-undef */
function getComponentName(target) {
return target.displayName || target.name || 'Component';
}