Table

A responsive table component.

Preview
Table
NameEmailRoleStatus
John Doejohn.doe@example.comAdminActive
Jane Smithjane.smith@example.comUserActive
Bob Johnsonbob.johnson@example.comEditorInactive
Code
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>