Table

Rows and columns of data.

Installation

import { Table, THead, TBody, TR, TH, TD } from "~/components/ui/Table";

Usage

ServiceStatus
Web hostingOnline
BackupsOnline
<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

PropTypeDefaultDescription
Table / THead / TBody / TR / TH / TDcomponents-Styled native table elements; className merges.

Accessibility

  • Native table semantics; use TH for header cells and add a caption when the table needs context.
View site