Skip to main content
Version: Next

Table

Home > @backstage/ui > Table

Table component for displaying tabular data

Signature:

Table: {
Root: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLTableElement> & import("react").RefAttributes<HTMLTableElement>>;
Header: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLTableSectionElement> & import("react").RefAttributes<HTMLTableSectionElement>>;
Body: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLTableSectionElement> & import("react").RefAttributes<HTMLTableSectionElement>>;
Head: import("react").ForwardRefExoticComponent<import("react").ThHTMLAttributes<HTMLTableCellElement> & import("react").RefAttributes<HTMLTableCellElement>>;
Row: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLTableRowElement> & import("react").RefAttributes<HTMLTableRowElement>>;
Cell: import("react").ForwardRefExoticComponent<import("react").TdHTMLAttributes<HTMLTableCellElement> & import("react").RefAttributes<HTMLTableCellElement>>;
CellText: import("react").ForwardRefExoticComponent<import(".").TableCellTextProps & import("react").RefAttributes<HTMLDivElement>>;
CellLink: import("react").ForwardRefExoticComponent<import(".").TableCellLinkProps & import("react").RefAttributes<HTMLDivElement>>;
CellProfile: import("react").ForwardRefExoticComponent<import(".").TableCellProfileProps & import("react").RefAttributes<HTMLDivElement>>;
Caption: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLTableCaptionElement> & import("react").RefAttributes<HTMLTableCaptionElement>>;
}