UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

17 lines 885 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = require("react"); var SearchBox_1 = require("office-ui-fabric-react/lib/SearchBox"); var SearchBoxFullSizeExample = (function (_super) { tslib_1.__extends(SearchBoxFullSizeExample, _super); function SearchBoxFullSizeExample() { return _super !== null && _super.apply(this, arguments) || this; } SearchBoxFullSizeExample.prototype.render = function () { return (React.createElement(SearchBox_1.SearchBox, { onFocus: function () { return console.log('onFocus called'); }, onBlur: function () { return console.log('onBlur called'); } })); }; return SearchBoxFullSizeExample; }(React.Component)); exports.SearchBoxFullSizeExample = SearchBoxFullSizeExample; //# sourceMappingURL=SearchBox.FullSize.Example.js.map