Skip to main content

Function: registerProjectOverviewSection()

function registerProjectOverviewSection(projectOverviewSection: ProjectOverviewSection): void

Register a new section in the project overview page.

This allows plugins to add custom sections to the project overview, providing additional information or functionality on the main project page.

Parameters

ParameterTypeDescription
projectOverviewSectionProjectOverviewSectionThe section configuration to register

Returns

void

Example

registerProjectOverviewSection({
id: 'resource-usage',
component: ({ project }) => <ResourceUsageChart project={project} />
});

Defined in

src/plugin/registry.tsx:1114