import React, { memo } from 'react'; import PropTypes from 'prop-types'; import { toString } from 'lodash'; import { IcoContainer } from 'strapi-helper-plugin'; import { useListView } from '../../contexts/ListView'; import CustomInputCheckbox from '../CustomInputCheckbox'; import { ActionContainer, Truncate, Truncated } from './styledComponents'; function Row({ isBulkable, row, headers }) { const { entriesToDelete, onChangeBulk, onClickDelete } = useListView(); return ( <> {isBulkable && (