Skip to main content

DashboardBaseWidgetProps

DashboardBaseWidgetProps

Base props interface for dashboard widgets.

Signature
type DashboardBaseWidgetProps = PropsWithChildren<{
id: string;
title?: string;
description?: string;
config?: Record<string, unknown>;
actions?: React.ReactNode;
}>