Rate this page:
A selectable section in the right panel of the Confluence homepage, which expands to reveal content.
confluence:homepageFeed
module.1 2import ForgeUI, { HomepageFeed } 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, HomepageFeed} from '@forge/ui'; const App = () => { return ( <Text>Hello world!</Text> ); }; export const run = render( <HomepageFeed> <App/> </HomepageFeed> );
Rate this page: