jsx-email
Version:
Render JSX email components to HTML email
10 lines • 346 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isValidElement = void 0;
function isValidElement(object) {
return (typeof object === 'object' &&
object !== null &&
typeof object.$$typeof === 'symbol');
}
exports.isValidElement = isValidElement;
//# sourceMappingURL=is-valid-element.js.map