office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
15 lines • 676 B
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { ColorPicker } from 'office-ui-fabric-react/lib/ColorPicker';
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, { color: "#FFFFFF" });
};
return ColorPickerBasicExample;
}(React.Component));
export { ColorPickerBasicExample };
//# sourceMappingURL=ColorPicker.Basic.Example.js.map