Sha256: 83010a33ac035374688ae940bce9b283bcad1f251399339ce17f489fab361f92
Contents?: true
Size: 499 Bytes
Versions: 152
Compression:
Stored size: 499 Bytes
Contents
import React from 'react'; import TableSelectionCell from '../components/TableSelectionCell'; export default ( isGenericRow, selectionController, additionalData, before, after, ) => ( <TableSelectionCell id={`select${additionalData.rowIndex}`} checked={selectionController.isSelected(additionalData)} hide={isGenericRow} onChange={() => selectionController.selectRow(additionalData)} before={before} after={after} disabled={additionalData.disabled} /> );
Version data entries
152 entries across 152 versions & 1 rubygems