10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { DashboardLeadCountItem } from '@interfaces';
|
|
|
|
export interface LeadDistributionProps {
|
|
data: DashboardLeadCountItem[];
|
|
loading?: boolean;
|
|
activeAction: string;
|
|
onActionChange: (action: string) => void;
|
|
}
|
|
|