forgeplus-react/node_modules/react-jss/lib/getDisplayName.js

9 lines
192 B
JavaScript
Raw Normal View History

2023-07-29 21:19:10 +08:00
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports['default'] = function (Component) {
return Component.displayName || Component.name || 'Component';
};