DashboardLoadResult
Home > @gooddata/sdk-ui-loaders > DashboardLoadResult
DashboardLoadResult type
A result of successful load of a dashboard consists of a React component and constructed props that should be passed to the component in order to mount the dashboard.
Signature:
export type DashboardLoadResult = {
ctx: DashboardContext;
engine: IDashboardEngine;
DashboardComponent: React.ComponentType<IDashboardProps>;
props: IDashboardProps;
plugins: IDashboardPluginContract_V1[];
};
References: DashboardContext, IDashboardEngine, IDashboardProps, IDashboardPluginContract_V1