ShellUiMount
Home > @gooddata/sdk-pluggable-application-model > ShellUiMount
ShellUiMount type
This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Shell UI mount function signature.
Signature:
export type ShellUiMount = (options: IShellUiMountOptions) => IShellUiMountHandle;
References: IShellUiMountOptions, IShellUiMountHandle
Remarks
A shell UI module must export a mount function conforming to this signature. The function receives a container element and context data, renders the application shell (header, navigation, layout), and returns a handle for lifecycle management.
The implementation is framework-agnostic — a module can use React, vanilla DOM, or any other rendering approach internally.