A hyperlink to an external website.
import {Link} from "attio/client"
<a href="https://yourwebsite.com" target="_blank" />`
import React from "react"; import { TextBlock, Link } from "attio/client"; export function LinkDialog() { return ( <TextBlock> Check out <Link href="https://attio.com">Attio</Link>. </TextBlock> ); }
Was this page helpful?