TanStack Table Adapter API - v0.1.0
    Preparing search index...

    Type Alias TableClassNames

    TableClassNames: Partial<DefaultTableClassNames>

    Partial class names for overriding specific table elements

    This type allows you to override only specific class names while inheriting the rest from the default or globally configured class names.

    <TableAdapter
    data={data}
    columns={columns}
    classNames={{
    table: "border-collapse w-full",
    tbodyRow: "hover:bg-blue-50",
    }}
    />