UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

1 lines 625 B
define([], function() { return "import * as React from 'react';\nimport {\n Link\n} from '../../../../index';\n\nexport class LinkBasicExample extends React.Component<any, any> {\n public render() {\n return (\n <div>\n <Link href='http://dev.office.com/fabric/components/link'>I am a link with an href.</Link>\n <span> Also, </span>\n <Link>I am a link without an href. </Link>\n <span> Not to be outdone, </span>\n <Link disabled={ true } href='http://dev.office.com/fabric/components/link'>I am a disabled link, even with an href.</Link>\n </div>\n );\n }\n\n}\n"; });