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