SandDance

vega-deck.gl .controls

Interfaces

TableCell

interface TableCell {
    className?: string;
    content: string | Element;
    title?: string;
}

Properties

Name Type Optional
className string true
content string | Element false
title string true

TableProps

interface TableProps {
    className?: string;
    onRowClick?: (e: Event, index: number) => void;
    rows: TableRow[];
    rowClassName?: string;
}

Properties

Name Type Optional
className string true
onRowClick (e: Event, index: number) => void true
rows TableRow[] false
rowClassName string true

TableRow

interface TableRow {
    cells: TableCell[];
}

Properties

Name Type Optional
cells TableCell[] false

Variables

Table

const Table: StatelessComponent<TableProps>;

Type

StatelessComponent<TableProps>