Appearance
io.display.table
Represents a display.table component.
Usage
ts
await io.display.table("Customer Issues", {
data: [
{
title: "Customer is unable to access their profile page",
ticket: 123456,
},
{
title: "Customer is requesting access to new feature",
ticket: 123457,
},
{
title: "Can't access account",
ticket: 123458,
},
{
title: "Actions are not showing in history",
ticket: 123459,
},
],
});
python
await io.display.table(
"Customer Issues",
data=[
{
"title": "Customer is unable to access their profile page",
"ticket": 123456,
},
{
"title": "Customer is requesting access to new feature",
"ticket": 123457,
},
{
"title": "Can't access account",
"ticket": 123458,
},
{
"title": "Actions are not showing in history",
"ticket": 123459,
},
],
)