Ao invés de usar o bind no método que chama o evento, posso usá-lo no constructor ? tipo:
import React, { Component } from 'react';
import './styles.css';
class Formulario extends Component {
constructor() {
super();
this.handleChange = this.handleChange.bind(this);
}
handleChange(event){
this.titulo = event.target.value;
}
render() {
return (
<form className="form-cadastro">
<input
className="form-cadastro-input"
type="text"
placeholder="Titulo"
onChange={this.handleChange}
/>
<textarea className="form-cadastro-input" rows={3} cols={50} maxLength="100" placeholder="Escreva sua nota..." />
<button className="form-cadastro-submit" type="button">Cadastrar</button>
</form>
)
}
}
export default Formulario;