office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
22 lines (20 loc) • 712 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 OrgChart = (function (_super) {
__extends(OrgChart, _super);
function OrgChart() {
_super.apply(this, arguments);
}
OrgChart.prototype.render = function () {
var rootClass = 'ms-OrgChart';
return (React.createElement("div", {className: rootClass}));
};
return OrgChart;
}(React.Component));
exports.OrgChart = OrgChart;
//# sourceMappingURL=OrgChart.js.map
;