Default

Function: default()

function default(props): Promise<Element>

Defined in: app/layout.tsx:30

RootLayout component that serves as the main layout for the application. This component wraps the entire application content and provides a consistent structure across all pages.

Parameters

props

Readonly<{ children: React.ReactNode; }>

The properties passed to the component.

Returns

Promise<Element>

A JSX element that contains the children wrapped in a main element.

On this page