Rate this page:
A piece of content displayed in the side panel of a Jira Service Management customer portal request.
PortalRequestDetailPanel
is the top-level component required for the
jiraServiceManagement:portalRequestDetailPanel
module.1 2import ForgeUI, { PortalRequestDetailPanel } from "@forge/ui";
Name | Type | Required | Description |
---|---|---|---|
children | Array<ForgeComponent> | Yes | A container for displaying multiple components. Can contain any UI kit component. |
1 2import ForgeUI, { PortalRequestDetailPanel, render, Text } from "@forge/ui"; const App = () => { return ( <PortalRequestDetailPanel> <Text>Hello, World!</Text> </PortalRequestDetailPanel> ); }; export const run = render(<App />);
Rate this page: