Rate this page:
An inline dialog triggered from the content byline section of a Confluence page.
ContentBylineItem
is the top-level component required for the
confluence:contentBylineItem
module.
1 2import ForgeUI, { ContentBylineItem } from '@forge/ui';
Name | Type | Required | Description |
---|---|---|---|
children | Array<ForgeComponent> | Yes | A container for displaying multiple components. Can only contain InlineDialog. |
1 2import ForgeUI, { render, Text, ContentBylineItem, InlineDialog } from '@forge/ui'; const App = () => { return ( <InlineDialog> <Text>Hello world!</Text> </InlineDialog> ); }; export const run = render( <ContentBylineItem> <App/> </ContentBylineItem> );
Rate this page: