OddApp Design
Raw shadcn — not wrapped in @oddapp/ui yet.

Import directly: @/components/ui/table. OddApp tokens are applied via globals.css @theme. All token rules still apply.

Table

Accessible HTML table with styled header, body, and cells.

Default

Import and render this component in your app using the snippet below.

import { Table, TableHeader, TableBody, TableRow, TableHead, TableCell } from '@/components/ui/table'

<Table>
  <TableHeader>
    <TableRow>
      <TableHead>Name</TableHead>
      <TableHead>Status</TableHead>
    </TableRow>
  </TableHeader>
  <TableBody>
    <TableRow>
      <TableCell>Acme CRM</TableCell>
      <TableCell>Active</TableCell>
    </TableRow>
  </TableBody>
</Table>