(props)
| 112 | } |
| 113 | |
| 114 | private getDefaultState(props) { |
| 115 | return { |
| 116 | ...initialValue, |
| 117 | option: { ...Select.getSelectOption(props) }, |
| 118 | }; |
| 119 | } |
| 120 | |
| 121 | public handleOnClickOption = (e: React.MouseEvent) => { |
| 122 | const option = e.target as HTMLDivElement; |
no test coverage detected