Files
bigcapital/src/components/Datatable/TableIndeterminateCheckboxRow.js
2022-03-21 13:15:10 +02:00

13 lines
353 B
JavaScript

import React from 'react';
import { Checkbox } from '@blueprintjs/core';
import { CellType } from 'common';
export default function TableIndeterminateCheckboxRow({ row }) {
return (
<div class="selection-checkbox">
<Checkbox {...row.getToggleRowSelectedProps()} />
</div>
);
}
TableIndeterminateCheckboxRow.cellType = CellType.Field;