(e: React.MouseEvent)
| 75 | } |
| 76 | |
| 77 | export function getEventPosition(e: React.MouseEvent) { |
| 78 | return { |
| 79 | x: e.clientX, |
| 80 | y: e.clientY, |
| 81 | }; |
| 82 | } |
| 83 | |
| 84 | export function findParentByClassName<T>(element, className): T | null { |
| 85 | try { |
no outgoing calls
no test coverage detected