Rate this page:
Renders content of the jiraServiceManagement:portalRequestCreatePropertyPanel
module is displayed on the request creation screen in the customer portal.
PortalRequestCreatePropertyPanel
is the top-level component required for the
jiraServiceManagement:PortalRequestCreatePropertyPanel
module.1 2import ForgeUI, { PortalRequestCreatePropertyPanel } 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, { PortalRequestCreatePropertyPanel, render, Text } from "@forge/ui"; const App = () => { return ( <PortalRequestCreatePropertyPanel> <Text>Hello, world! This is a Forge Portal request create property panel.</Text> </PortalRequestCreatePropertyPanel> ); }; export const run = render(<App />);
Rate this page: