()
| 164 | let {dropProps} = useDrop({ |
| 165 | ref, |
| 166 | onDropEnter() { |
| 167 | if (localState.nextTarget != null) { |
| 168 | state.setTarget(localState.nextTarget); |
| 169 | } |
| 170 | }, |
| 171 | onDropMove(e) { |
| 172 | if (localState.nextTarget != null) { |
| 173 | state.setTarget(localState.nextTarget); |
nothing calls this directly
no test coverage detected