office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
23 lines (21 loc) • 1.08 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = require("react");
var Button_1 = require("office-ui-fabric-react/lib/Button");
var Label_1 = require("office-ui-fabric-react/lib/Label");
var ButtonCompoundExample = (function (_super) {
tslib_1.__extends(ButtonCompoundExample, _super);
function ButtonCompoundExample() {
return _super.call(this) || this;
}
ButtonCompoundExample.prototype.render = function () {
var _a = this.props, disabled = _a.disabled, checked = _a.checked;
return (React.createElement("div", { className: 'ms-BasicButtonsExample' },
React.createElement(Label_1.Label, null, "Compound button"),
React.createElement(Button_1.CompoundButton, { description: 'You can create a new account here.', disabled: disabled, checked: checked }, "Create account")));
};
return ButtonCompoundExample;
}(React.Component));
exports.ButtonCompoundExample = ButtonCompoundExample;
//# sourceMappingURL=Button.Compound.Example.js.map
;