Table components provide a responsive table. These components are built and styled with Shadcn UI.

Shadcn UI Documentation: https://ui.shadcn.com/docs/components/table

Properties

$$typeof: symbol
defaultProps?: Partial<HTMLAttributes<HTMLTableElement> & {
    stickyHeader?: boolean;
} & RefAttributes<HTMLTableElement>>
displayName?: string

Used in debugging messages. You might want to set it explicitly if you want to display a different name for debugging purposes.

propTypes?: WeakValidationMap<HTMLAttributes<HTMLTableElement> & {
    stickyHeader?: boolean;
} & RefAttributes<HTMLTableElement>>