HostUiMount
Home > @gooddata/sdk-pluggable-application-model > HostUiMount
HostUiMount 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.
Host UI mount function signature.
Signature:
export type HostUiMount = (options: IHostUiMountOptions) => IHostUiMountHandle;
References: IHostUiMountOptions, IHostUiMountHandle
Remarks
A host UI module must export a mount function conforming to this signature. The function receives a container element and context data, renders the application host (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.