zent
Version:
一套前端设计语言和基于React的实现
15 lines (14 loc) • 407 B
JavaScript
import { __extends } from "tslib";
import { Component } from 'react';
var AlertItem = (function (_super) {
__extends(AlertItem, _super);
function AlertItem() {
return _super !== null && _super.apply(this, arguments) || this;
}
AlertItem.prototype.render = function () {
return null;
};
return AlertItem;
}(Component));
export { AlertItem };
export default AlertItem;