import React from 'react'; import styles from './VirtualTableRowCell.css'; export interface VirtualTableRowCellProps { className?: string; children?: string | React.ReactNode; } function VirtualTableRowCell({ className = styles.cell, children, }: VirtualTableRowCellProps) { return
{children}
; } export default VirtualTableRowCell;