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