Table
Props
Name | Type | Default | Description |
---|
columns | Column[] | | Array of column config |
rows | Array<any>[] | | Data to be rendered by the table |
Usage
<Table
columns={[
{
heading: 'Pass holder type',
isHeading: true,
}, {
heading: 'Price',
}, {
heading: 'Frequency',
},
]}
rows={[
[
'30 day season ticket holders', '£80.00', 'Monthly'
], [
'60 single passenger Multilink Pass holders', '£80.00', 'Monthly'
], [
'90 day season ticket holders', '£78.00', 'Monthly'
], [
'180 day season ticket holders', '£75.00', 'Monthly'
], [
'Annual season ticket holders', '£73.00', 'Monthly'
],
]}
/>