office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
21 lines (19 loc) • 1.05 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = require("react");
var CommandBar_1 = require("office-ui-fabric-react/lib/CommandBar");
var data_nonFocusable_1 = require("./data-nonFocusable");
var CommandBarNonFocusableItemsExample = (function (_super) {
tslib_1.__extends(CommandBarNonFocusableItemsExample, _super);
function CommandBarNonFocusableItemsExample() {
return _super !== null && _super.apply(this, arguments) || this;
}
CommandBarNonFocusableItemsExample.prototype.render = function () {
return (React.createElement("div", null,
React.createElement(CommandBar_1.CommandBar, { isSearchBoxVisible: false, items: data_nonFocusable_1.itemsNonFocusable, farItems: data_nonFocusable_1.farItemsNonFocusable })));
};
return CommandBarNonFocusableItemsExample;
}(React.Component));
exports.CommandBarNonFocusableItemsExample = CommandBarNonFocusableItemsExample;
//# sourceMappingURL=CommandBar.NonFocusable.Example.js.map
;