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