ETASCOM CRM V3 - Documentation API
    Preparing search index...

    Interface KanbanRootProps<T>

    interface KanbanRootProps<T> {
        value: Record<string, T[]>;
        onValueChange: (value: Record<string, T[]>) => void;
        getItemValue: (item: T) => string;
        children: ReactNode;
        className?: string;
        onMove?: (event: KanbanMoveEvent) => void;
    }

    Type Parameters

    • T
    Index

    Properties

    value: Record<string, T[]>
    onValueChange: (value: Record<string, T[]>) => void
    getItemValue: (item: T) => string
    children: ReactNode
    className?: string
    onMove?: (event: KanbanMoveEvent) => void