react-toolbox/lib/utils/react.js

9 lines
240 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isComponentOfType = isComponentOfType;
function isComponentOfType(classType, reactElement) {
return reactElement && reactElement.type === classType;
}