Rate this page:
A piece of content in a Confluence space, accessible from a tab under Space Settings > Integrations.
SpaceSettings
is the top-level component required for the
confluence:spaceSettings
module.
1 2import ForgeUI, { SpaceSettings } 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, SpaceSettings} from '@forge/ui'; const App = () => { return ( <Text>Hello world!</Text> ); }; export const run = render( <SpaceSettings> <App/> </SpaceSettings> );
Rate this page: