import type { HTMLAttributes, PropsWithChildren } from 'react'; import { StyledTableRow } from './styles'; export const TableRow = ({ children, ...props }: PropsWithChildren>) => { return {children}; }; export default TableRow;