Rate this page:
Renders content of the jiraServiceManagement:portalSubheader
module on a customer's portal pages.
PortalSubheader
is the top-level component required for the
jiraServiceManagement:portalSubheader
module.1 2import ForgeUI, { PortalSubheader } 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, { PortalSubheader, render, Text } from "@forge/ui"; const App = () => { return ( <PortalSubheader> <Text>Hello, world! This is a portal sub-header.</Text> </PortalSubheader> ); }; export const run = render(<App />);
Rate this page: