The user will be prompted if they are sure they want to open the link.
Example
link-dialog.tsx
Props
string
required
The url to link to.
React.ReactNode
required
The text to hyperlink.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The legacy app.ts layout is deprecated. New apps use the folder-based layout under src/app/; convert existing apps with the migration guide.
A hyperlink to an external website.
The user will be prompted if they are sure they want to open the link.
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?