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