Skip to content

Commit

Permalink
fix typing (#811)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbetancur authored May 19, 2021
1 parent 3225f95 commit f3928dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataTable/TableCellCheckbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type TableCellCheckboxProps<T> = {
row: T;
rowCount: number;
selected: boolean;
selectableRowsComponent: 'input' | React.ReactElement;
selectableRowsComponent: 'input' | React.ReactNode;
selectableRowsComponentProps: Record<string, unknown>;
selectableRowDisabled: RowState<T>;
onSelectedRow: (action: SingleRowAction<T>) => void;
Expand Down

0 comments on commit f3928dc

Please sign in to comment.