let { Link, Fabric } = window.Fabric; class LinkBasicExample extends React.Component { public render(): JSX.Element { return (
When a link has an href, it renders as an anchor tag. Without an href, the link is rendered as a button. You can also use the disabled attribute to create a disabled link .
); } } ReactDOM.render(, document.getElementById('content'));