Rate this page:
Renders a full page app that appears in the Confluence global settings.
GlobalSettings
is the top-level component required for the confluence:globalSettings
module.
1 2import ForgeUI, { GlobalSettings } from '@forge/ui';
Name | Type | Required | Description |
---|---|---|---|
children | Array<ForgeComponent> | Yes | A container for displaying multiple components. Can contain any UI kit component. |
1 2import ForgeUI, {render, Text, GlobalSettings} from '@forge/ui'; const App = () => { return ( <Text>Hello world!</Text> ); }; export const run = render( <GlobalSettings> <App/> </GlobalSettings> );
Rate this page: