Rate this page:
Renders content of the jiraServiceManagement:portalFooter
module at the bottom of a customer's portal pages.
PortalFooter
is the top-level component required for the
jiraServiceManagement:portalFooter
module.1 2import ForgeUI, { PortalFooter } 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, { PortalFooter, render, Text } from "@forge/ui"; const App = () => { return ( <PortalFooter> <Text>Hello, world! This is a portal footer. </Text> </PortalFooter> ); }; export const run = render(<App />);
Rate this page: