Table
Rows and columns of data.
Installation
import { Table, THead, TBody, TR, TH, TD } from "~/components/ui/Table";Usage
| Service | Status |
|---|---|
| Web hosting | Online |
| Backups | Online |
<Table>
<THead><TR><TH>Service</TH><TH>Status</TH></TR></THead>
<TBody><TR><TD>Web hosting</TD><TD>Online</TD></TR></TBody>
</Table>API reference
| Prop | Type | Default | Description |
|---|---|---|---|
| Table / THead / TBody / TR / TH / TD | components | - | Styled native table elements; className merges. |
Accessibility
- Native table semantics; use TH for header cells and add a caption when the table needs context.