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