(props)
| 8 | |
| 9 | class Textarea extends Component { |
| 10 | constructor (props) { |
| 11 | super(props); |
| 12 | this.state = { |
| 13 | value : props.value, |
| 14 | rows: props.rows |
| 15 | }; |
| 16 | |
| 17 | this.handleChange = this.handleChange.bind(this); |
| 18 | this.handleTrigger = this.handleTrigger.bind(this); |
| 19 | } |
| 20 | |
| 21 | componentDidMount (){ |
| 22 | let el = this.element; |
nothing calls this directly
no outgoing calls
no test coverage detected