import React from 'react'; import styles from './VirtualTableRow.css'; interface VirtualTableRowProps extends React.HTMLAttributes { className: string; style: object; children?: React.ReactNode; } function VirtualTableRow({ className = styles.row, children, style, ...otherProps }: VirtualTableRowProps) { return (
{children}
); } export default VirtualTableRow;