office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
17 lines • 941 B
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { CommandBar } from 'office-ui-fabric-react/lib/CommandBar';
import { itemsNonFocusable, farItemsNonFocusable } from './data-nonFocusable';
var CommandBarNonFocusableItemsExample = /** @class */ (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, { isSearchBoxVisible: false, items: itemsNonFocusable, farItems: farItemsNonFocusable })));
};
return CommandBarNonFocusableItemsExample;
}(React.Component));
export { CommandBarNonFocusableItemsExample };
//# sourceMappingURL=CommandBar.NonFocusable.Example.js.map