Skip to main content

PageActionBar

A component for displaying the main actions for a page. This should be used inside the Page component. It should be used in conjunction with the PageActionBarLeft and PageActionBarRight components as direct children.

Signature
function PageActionBar(props: Readonly<{ children: React.ReactNode }>): void

Parameters

props

parameterReadonly<{ children: React.ReactNode }>

The PageActionBarLeft component should be used to display the left content of the action bar.

Signature
function PageActionBarLeft(props: Readonly<{ children: React.ReactNode }>): void

Parameters

props

parameterReadonly<{ children: React.ReactNode }>

The PageActionBarRight component should be used to display the right content of the action bar.

Signature
function PageActionBarRight(props: Readonly<{    children: React.ReactNode;    dropdownMenuItems?: InlineDropdownItem[];}>): void

Parameters

props

parameterReadonly<{ children: React.ReactNode; dropdownMenuItems?: InlineDropdownItem[]; }>
Was this chapter helpful?
Report Issue
Edited Feb 2, 2026·Edit this page