Search documentation, components, and switch theme.
A table component for displaying data.
npx shadcn@latest add @formance/table
import { Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, } from '@/components/ui/table'
<Table> <TableCaption>Recent transactions.</TableCaption> <TableHeader> <TableRow> <TableHead>ID</TableHead> <TableHead>Status</TableHead> <TableHead>Amount</TableHead> </TableRow> </TableHeader> <TableBody> <TableRow> <TableCell>TXN001</TableCell> <TableCell>Completed</TableCell> <TableCell>$250.00</TableCell> </TableRow> </TableBody> </Table>