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