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