office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
25 lines • 1.3 kB
JavaScript
import * as tslib_1 from "tslib";
// @codepen
import * as React from 'react';
import { Link } from 'office-ui-fabric-react/lib/Link';
import './Link.Example.scss';
var LinkBasicExample = /** @class */ (function (_super) {
tslib_1.__extends(LinkBasicExample, _super);
function LinkBasicExample() {
return _super !== null && _super.apply(this, arguments) || this;
}
LinkBasicExample.prototype.render = function () {
return (React.createElement("div", { className: "docs-LinkExample" },
React.createElement("span", null, "When a link has an href, "),
React.createElement(Link, { href: "http://dev.office.com/fabric/components/link" }, "it renders as an anchor tag."),
React.createElement("span", null, " Without an href, "),
React.createElement(Link, null, "the link is rendered as a button"),
".",
React.createElement("span", null, " You can also use the disabled attribute to create a "),
React.createElement(Link, { disabled: true, href: "http://dev.office.com/fabric/components/link" }, "disabled link"),
"."));
};
return LinkBasicExample;
}(React.Component));
export { LinkBasicExample };
//# sourceMappingURL=Link.Basic.Example.js.map