TinyBase logoTinyBase β

HtmlTableProps

HtmlTableProps props are used for components that will render in an HTML table, such as the TableInHtmlTable component or SortedTableInHtmlTable component.

{
  className?: string;
  headerRow?: boolean;
  idColumn?: boolean;
}
TypeDescription
className?string

A string className to use on the root of the resulting element.

headerRow?boolean

Whether a header row should be rendered at the top of the table, defaulting to true.

idColumn?boolean

Whether an Id column should be rendered on the left of the table, defaulting to true.

Since

v4.1.0