UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

19 lines (18 loc) 861 B
'use client'; import '@ui5/webcomponents/dist/TableHeaderRow.js'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * The `TableHeaderRow` component represents the table headers of a `Table`. * * It is tightly coupled to the `Table` and should therefore be used in the `Table` only. * The header row is placed in the `headerRow` slot of the table. * * * * __Note:__ This is a UI5 Web Component! [TableHeaderRow UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/TableHeaderRow) | [Repository](https://github.com/UI5/webcomponents) * * @since [2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents__. */ const TableHeaderRow = withWebComponent('ui5-table-header-row', [], ['sticky'], [], []); TableHeaderRow.displayName = 'TableHeaderRow'; export { TableHeaderRow };