(props)
| 5 | |
| 6 | class FormItem extends React.Component { |
| 7 | constructor (props) { |
| 8 | super(props); |
| 9 | this.handleChange = this.handleChange.bind(this); |
| 10 | } |
| 11 | |
| 12 | handleChange (value) { |
| 13 | if (value && value.nativeEvent) { |
nothing calls this directly
no outgoing calls
no test coverage detected