Table
Data table component
Preview
| ID | Status | Task |
|---|---|---|
| 0x001A | ERROR | Initialize Subsystem |
| 0x002B | RUNNING | Data Fetch Cycle |
Installation
npx shadcn@latest add @glitchcn/tableUsage
import { Table, TableBody, TableCell, TableRow } from "@/components/ui/table"
<Table>
<TableBody>
<TableRow>
<TableCell>Item 1</TableCell>
<TableCell>Active</TableCell>
</TableRow>
</TableBody>
</Table>