Installation
Examples
Basic table
Row data with column definitions and search.
| Name | Role | Status |
|---|---|---|
| Alex Johnson | Admin | Active |
| Sarah Kim | Editor | Active |
| Marcus Webb | Viewer | Inactive |
Loading state
Shows skeleton rows while data is fetching.
API Reference
| Prop | Type | Default | Description |
|---|---|---|---|
| data* | T[] | required | Array of row data. |
| columns* | ColumnDef<T>[] | required | Column configuration array. |
| loading | boolean | false | Shows skeleton rows while fetching. |
| striped | boolean | false | Alternating row background colors. |
| onRowClick | (row: T) => void | — | Called when a row is clicked. |