hierarchical-table
Version:
Hierarchical statistical table for React
19 lines • 637 B
JavaScript
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var React = require('react');
var Table = (function (_super) {
__extends(Table, _super);
function Table() {
_super.apply(this, arguments);
}
Table.prototype.render = function () {
return (React.createElement("div", null, "Test"));
};
return Table;
}(React.Component));
exports.Table = Table;
//# sourceMappingURL=table.js.map
;