UNPKG

@uifabric/experiments

Version:

Experimental React components for building experiences for Office 365.

20 lines 1.1 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = require("react"); var FocusZone_1 = require("office-ui-fabric-react/lib/FocusZone"); var CollapsibleSection_1 = require("@uifabric/experiments/lib/CollapsibleSection"); 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