@tdb/web
Version:
Common condiguration for serving a web-site and testing web-based UI components.
17 lines (16 loc) • 555 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var common_1 = require("../../common");
var Foo = (function (_super) {
tslib_1.__extends(Foo, _super);
function Foo() {
return _super !== null && _super.apply(this, arguments) || this;
}
Foo.prototype.render = function () {
return (common_1.React.createElement("div", null,
common_1.React.createElement("h1", null, "Test")));
};
return Foo;
}(common_1.React.PureComponent));
exports.Foo = Foo;