This section describes a Forge preview feature. Preview features are deemed stable; however, they remain under active development and may be subject to shorter deprecation windows. Preview features are suitable for early adopters in production environments.
We release preview features so partners and developers can study, test, and integrate them prior to General Availability (GA). For more information, see Forge release phases: EAP, Preview, and GA.
To add the Link
component to your app:
1 2import { Link } from '@forge/react';
A component that displays a link.
Name | Type | Required | Description |
---|---|---|---|
href | string | Yes | The prop |
children | string | Yes | The text to display for the link. |
openNewTab | boolean | Whether or not the link should open in a new tab. Defaults to false . |
A link component that will open the https://atlassian.com
website in a new tab when clicked.
1 2<Link href="https://atlassian.com" openNewTab={true}> Go to Atlassian </Link>
Rate this page: