(props)
| 3 | |
| 4 | export default class TodoInput extends Component { |
| 5 | constructor (props) { |
| 6 | super(props) |
| 7 | this.state = { inputVal: '' } |
| 8 | this.handleChange = handleChange.bind(this) |
| 9 | } |
| 10 | |
| 11 | handleSubmit () { |
| 12 | let content = this.state.inputVal.trim() |
nothing calls this directly
no outgoing calls
no test coverage detected