(payload: RemoveRowsPayload)
| 109 | } |
| 110 | |
| 111 | function onRemoveRows(payload: RemoveRowsPayload) { |
| 112 | stateBuilder.removeRows(payload); |
| 113 | stateBuilder.dispatchChange(dispatch); |
| 114 | } |
| 115 | |
| 116 | function addEmptyRow() { |
| 117 | dispatch({ type: 'ADD_EMPTY_ROW' }); |
nothing calls this directly
no test coverage detected