/**
 * TEAM: frontend_infra
 * @flow
 */

import * as React from "react";

import TextLink from "../../TextLink";

/**
 * @title Basic Usage
 * @description Just bring your link text and an href and you're good to go!
 */
export default function TextLinkBasicUsage(): React.Node {
  return (
    <TextLink href="/design/components/contributing">
      Show me the world
    </TextLink>
  );
}
