office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
17 lines • 785 B
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { TextField } from 'office-ui-fabric-react/lib/TextField';
import './TextField.Examples.scss';
var TextFieldPrefixExample = /** @class */ (function (_super) {
tslib_1.__extends(TextFieldPrefixExample, _super);
function TextFieldPrefixExample() {
return _super !== null && _super.apply(this, arguments) || this;
}
TextFieldPrefixExample.prototype.render = function () {
return (React.createElement("div", { className: "docs-TextFieldExample" },
React.createElement(TextField, { prefix: "https://" })));
};
return TextFieldPrefixExample;
}(React.Component));
export { TextFieldPrefixExample };
//# sourceMappingURL=TextField.Prefix.Example.js.map