Data Display
Table
A simple table component for displaying tabular data.
| Project | Status | Team | Budget |
|---|---|---|---|
| Website Redesign | Frontend Team | $12,500 | |
| Mobile App | Mobile Team | $8,750 | |
| API Integration | Backend Team | $5,200 | |
| Database Migration | DevOps Team | $3,800 | |
| User Dashboard | UX Team | $7,200 | |
| Security Audit | Security Team | $2,100 | |
| Total Budget | $39,550 | ||
Installation
Usage
import {
Table,
TableBody,
TableCaption,
TableCell,
TableFooter,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table"<Table>
<TableCaption>Caption</TableCaption>
<TableHeader>
<TableRow>
<TableHead>Header</TableHead>
<TableHead>Header</TableHead>
</TableRow>
</TableHeader>
<TableBody>
<TableRow>
<TableCell>Cell</TableCell>
<TableCell>Cell</TableCell>
</TableRow>
</TableBody>
</Table>