Table
Displays tabular data in rows and columns.
Preview
Props
| Prop | Type | Default | Description |
|---|---|---|---|
columns | array | [] | Column definitions |
data | array | [] | Row data objects |
Usage
const { Table } = window.ColorSnap;
ReactDOM.createRoot(document.getElementById('root')).render(
React.createElement(Table, { columns: [{ key: 'name', header: 'Name' }], data: [{ name: 'Alice' }] })
);