| 20 | }); |
| 21 | |
| 22 | interface IProps { |
| 23 | closeMap: any; |
| 24 | afterSelect: any; |
| 25 | option: any; |
| 26 | clickComponent: { |
| 27 | type: string, |
| 28 | secondType: string, |
| 29 | typeName: string |
| 30 | } |
| 31 | |
| 32 | } |
| 33 | let mouseTool: any = null |
| 34 | const SelectMap: React.FC<IProps> = (props) => { |
| 35 | const { closeMap, afterSelect, option, clickComponent } = props |
nothing calls this directly
no outgoing calls
no test coverage detected