office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
19 lines • 963 B
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { SearchBox } from 'office-ui-fabric-react/lib/SearchBox';
var SearchBoxFullSizeExample = /** @class */ (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
// tslint:disable:jsx-no-lambda
, {
// tslint:disable:jsx-no-lambda
onFocus: function () { return console.log('onFocus called'); }, onBlur: function () { return console.log('onBlur called'); }, onChange: function () { return console.log('onChange called'); } }));
};
return SearchBoxFullSizeExample;
}(React.Component));
export { SearchBoxFullSizeExample };
//# sourceMappingURL=SearchBox.FullSize.Example.js.map