"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isHostComponent;
/**
* Determines if a given element is a DOM element name (i.e. not a React component).
*/functionisHostComponent(element) {
returntypeof element === 'string';
}