office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
16 lines • 863 B
JavaScript
define(["require", "exports", "tslib", "react", "office-ui-fabric-react/lib/ColorPicker"], function (require, exports, tslib_1, React, ColorPicker_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ColorPickerBasicExample = /** @class */ (function (_super) {
tslib_1.__extends(ColorPickerBasicExample, _super);
function ColorPickerBasicExample() {
return _super !== null && _super.apply(this, arguments) || this;
}
ColorPickerBasicExample.prototype.render = function () {
return React.createElement(ColorPicker_1.ColorPicker, { color: "#FFFFFF" });
};
return ColorPickerBasicExample;
}(React.Component));
exports.ColorPickerBasicExample = ColorPickerBasicExample;
});
//# sourceMappingURL=ColorPicker.Basic.Example.js.map