8 lines
No EOL
247 B
JavaScript
8 lines
No EOL
247 B
JavaScript
'use strict';
|
|
|
|
exports.__esModule = true;
|
|
var isClassComponent = function isClassComponent(Component) {
|
|
return Boolean(Component && Component.prototype && typeof Component.prototype.render === 'function');
|
|
};
|
|
|
|
exports.default = isClassComponent; |