import classNames from 'classnames' type CellProps = { children: React.ReactNode className?: string } function Cell({ children, className }: CellProps) { return (
{children}
) } export default Cell