| 738 | } |
| 739 | |
| 740 | interface CellProps { |
| 741 | field: DbField |
| 742 | value: string |
| 743 | editing: boolean |
| 744 | onStartEdit: () => void |
| 745 | onEndEdit: () => void |
| 746 | onCommit: (value: string) => void |
| 747 | } |
| 748 | |
| 749 | function Cell({ field, value, editing, onStartEdit, onEndEdit, onCommit }: CellProps): JSX.Element { |
| 750 | if (field.type === 'checkbox') { |
nothing calls this directly
no outgoing calls
no test coverage detected