Rate this page:
Renders a Jira page selected from the Apps
section of the main navigation.
GlobalPage
is the top-level component required for the jira:globalPage
module.
1 2import ForgeUI, { GlobalPage } 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, { GlobalPage, render, Text } from '@forge/ui'; const App = () => { return ( <GlobalPage> <Text>Hello, world!</Text> </GlobalPage> ); }; export const run = render(<App/>);
Rate this page: