(props, monitor)
| 13 | |
| 14 | const ColorTarget = { |
| 15 | drop(props, monitor) { |
| 16 | props.onDrop(monitor.getItemType()); |
| 17 | }, |
| 18 | }; |
| 19 | |
| 20 | @DropTarget([Colors.YELLOW, Colors.BLUE], ColorTarget, (connect, monitor) => ({ |
nothing calls this directly
no test coverage detected