import * as React from 'react' import { theme } from '@latitude-data/client' interface Props extends React.HTMLAttributes { className?: string } const TableBody = React.forwardRef( ({ className, ...props }, ref) => ( ), ) TableBody.displayName = 'TableBody' export default TableBody