@uifabric/experiments
Version:
Experimental React components for building experiences for Office 365.
18 lines • 1.17 kB
JavaScript
define(["require", "exports", "tslib", "react", "office-ui-fabric-react/lib/FocusZone", "@uifabric/experiments/lib/CollapsibleSection"], function (require, exports, tslib_1, React, FocusZone_1, CollapsibleSection_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var CollapsibleSectionBasicExample = /** @class */ (function (_super) {
tslib_1.__extends(CollapsibleSectionBasicExample, _super);
function CollapsibleSectionBasicExample() {
return _super !== null && _super.apply(this, arguments) || this;
}
CollapsibleSectionBasicExample.prototype.render = function () {
return (React.createElement("div", null,
React.createElement(FocusZone_1.FocusZone, null,
React.createElement(CollapsibleSection_1.CollapsibleSection, { key: 1, defaultCollapsed: true, title: "Title 1" }, "Content 1"))));
};
return CollapsibleSectionBasicExample;
}(React.Component));
exports.CollapsibleSectionBasicExample = CollapsibleSectionBasicExample;
});
//# sourceMappingURL=CollapsibleSection.Basic.Example.js.map