(e: DragEvent, id: string)
| 49 | }; |
| 50 | |
| 51 | const dragenter = (e: DragEvent, id: string) => { |
| 52 | if (!containerState.isDesignMode) return; |
| 53 | addDragClass(e.currentTarget as HTMLElement); |
| 54 | e.preventDefault(); |
| 55 | }; |
| 56 | |
| 57 | const dragleave = (e: DragEvent, id: string) => { |
| 58 | if (!containerState.isDesignMode) return; |
nothing calls this directly
no test coverage detected