TableComponent
Installation
import {TableComponent} from 'uxp/components';Examples
const data = [
{RegNo: 1, Name: 'Jane',...}
{RegNo: 2, Name: 'John',...}
{RegNo: 3, Name: 'Andy',...}
]
<TableComponent
data={data}
columns={[ {id: 'RegNo', label: 'Registration Number' }, {id: 'Name', label: 'User Name'} ]}
pageSize={10}
total={25}
/>Properties
Name
Type
Description
data
type
columns
type
pageSize
type
total
type
loading
type
noItemsMessage
type
editColumn
type
deleteColumn
type
minCellWidth
type
onClickRow
type
onClickColumn
type
Last updated