Showcase all the different options you have with the table component
by sindre svendby964 ยท 8/17/2023
export async function main(input: string) {
const data = [
{
"id": 1,
"name": "A cell with a long name",
"age": 42,
},
{
"id": 2,
"name": "A briefer cell",
"age": 84,
},
];
return data.filter((elem) =>
elem.name.toLocaleLowerCase().startsWith(input.toLocaleLowerCase())
);
}