A responsive table component.
| Name | Role | Status | |
|---|---|---|---|
| John Doe | john.doe@example.com | Admin | Active |
| Jane Smith | jane.smith@example.com | User | Active |
| Bob Johnson | bob.johnson@example.com | Editor | Inactive |
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/windows95-ui/table"
<Table>
<TableHeader>
<TableRow>
<TableHead>Name</TableHead>
<TableHead>Status</TableHead>
</TableRow>
</TableHeader>
<TableBody>
<TableRow>
<TableCell>John Doe</TableCell>
<TableCell>Active</TableCell>
</TableRow>
</TableBody>
</Table>