'use client'; import styles from '@components/TableRow.module.css'; import * as React from 'react'; type TableRowProps = React.HTMLAttributes & { children?: React.ReactNode; }; const TableRow = ({ children, ...rest }) => { return ( {children} ); }; TableRow.displayName = 'TableRow'; export default TableRow;