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