import React, { forwardRef } from 'react' import type { HTMLAttributes, PropsWithChildren } from 'react' export interface TableHeadProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string } const TableHead = forwardRef< HTMLTableSectionElement, PropsWithChildren >(function TableHead( { children, testId = 'fs-table-head', ...otherProps }, ref ) { return ( {children} ) }) export default TableHead