Rate this page:
Renders content of the jiraServiceManagement:portalProfilePanel
module on the Portal profile
page in the Project settings
section.
PortalProfilePanel
is the top-level component required for the
jiraServiceManagement:portalProfilePanel
module.1 2import ForgeUI, { PortalProfilePanel } from "@forge/ui";
Name | Type | Required | Description |
---|---|---|---|
children | Array<ForgeComponent> | Yes | A container for the components to display on the page. Can contain any UI kit component. |
1 2import ForgeUI, { PortalProfilePanel, render, Text } from "@forge/ui"; const App = () => { return ( <PortalProfilePanel> <Text>Hello, world! This is a Forge profile panel.</Text> </PortalProfilePanel> ); }; export const run = render(<App />);
Rate this page: