import * as React from 'react'; import ItemAction from './ItemAction'; import { cellRendererProps } from './ItemList'; export default ( isResumableUploadsEnabled: boolean, onClick: React.MouseEventHandler, onUpgradeCTAClick?: () => void, ) => ({ rowData }: cellRendererProps) => ( onClick(rowData)} onUpgradeCTAClick={onUpgradeCTAClick} /> );