Rate this page:
Renders content of the jira:projectPage
module on a Jira page.
ProjectPage
is the top-level component required for the
jira:projectPage
module.
1 2import ForgeUI, { ProjectPage } 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, { ProjectPage, render, Text } from "@forge/ui"; const App = () => { return ( <ProjectPage> <Text>Hello, world!</Text> </ProjectPage> ); }; export const run = render(<App />);
Rate this page: