()
| 11 | } from '@multion/ui'; |
| 12 | |
| 13 | const TableExample = () => { |
| 14 | return ( |
| 15 | <Table> |
| 16 | <TableCaption>A list of your recent invoices.</TableCaption> |
| 17 | <TableHeader> |
| 18 | <TableRow> |
| 19 | <TableHead className="w-[100px]">Invoice</TableHead> |
| 20 | <TableHead>Status</TableHead> |
| 21 | <TableHead>Method</TableHead> |
| 22 | <TableHead className="text-right">Amount</TableHead> |
| 23 | </TableRow> |
| 24 | </TableHeader> |
| 25 | <TableBody> |
| 26 | <TableRow> |
| 27 | <TableCell className="font-medium">INV001</TableCell> |
| 28 | <TableCell>Paid</TableCell> |
| 29 | <TableCell>Credit Card</TableCell> |
| 30 | <TableCell className="text-right">$250.00</TableCell> |
| 31 | </TableRow> |
| 32 | </TableBody> |
| 33 | </Table> |
| 34 | ); |
| 35 | }; |
| 36 | |
| 37 | export default TableExample; |
nothing calls this directly
no outgoing calls
no test coverage detected