ObjectUIObjectUI
ComponentsComplex

Table

Display data in tabular format

Examples

Basic Table

NameEmail
John Doejohn@example.com
Jane Smithjane@example.com

Schema

interface TableSchema {
  type: 'table';
  columns: Array<{ header: string; accessorKey: string }>;
  data: Record<string, any>[];
}

On this page