type CellProps = { children: React.ReactNode } function Cell({ children }: CellProps) { return
{children}
} export default Cell