How to Bind this in React Without a Constructor
this in React is a reference to the current component. Usually this in React is bound to its built-in methods so that when you want to update state or use an event handler on a form, you could do something like this: <input type="text" ref={this.someInput} required