Radarr/frontend/src/Components/Table/Cells/VirtualTableRowCell.tsx
Mark McDowall 8caa839d99 Convert Table to TypeScript
(cherry picked from commit 699120a8fd54be9e70fb9a83298f94c8cb6a80bb)
2025-04-27 20:29:10 +03:00

16 lines
378 B
TypeScript

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 <div className={className}>{children}</div>;
}
export default VirtualTableRowCell;