Rate this page:
Renders content of the jiraServiceManagement:organizationPanel
module on the Organization
page in the Project settings
section.
OrganizationPanel
is the top-level component required for the
jiraServiceManagement:organizationPanel
module.1 2import ForgeUI, { OrganizationPanel } 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, { OrganizationPanel, render, Text } from "@forge/ui"; const App = () => { return ( <OrganizationPanel> <Text>Hello, world!</Text> </OrganizationPanel> ); }; export const run = render(<App />);
Rate this page: