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