Skip to main content

PageLayout

PageLayout

Status: Developer Preview

This component governs the layout of the contents of a Page component. It should contain all the PageBlock components that are to be displayed on the page.

Signature
function PageLayout(props: Readonly<PageLayoutProps>): void

Parameters

props

parameter
Readonly<PageLayoutProps>

PageLayoutProps

Status: Developer Preview

Signature
type PageLayoutProps = {
children: React.ReactNode;
className?: string;
}

children

property
React.ReactNode

className

property
string