import { ReactNode } from 'react'; import styles from './Table.css'; type Props = { /** * Must be instances of Table.Row and/or Table.RowExpandable components. See the [Subcomponent section](https://gestalt.pinterest.systems/web/table#Subcomponents) to learn more. */ children: ReactNode; }; /** * Use [Table.Body](https://gestalt.pinterest.systems/web/table#Table.Body) to group the body content in Table. */ export default function TableBody({ children }: Props) { return
{children}; } TableBody.displayName = 'Table.Body';