You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed in your app.js you binded all of your methods that affected the state by doing this.function = this.function.bind(this). We can also easily just bind the method where we define it by using the arrow syntax, we can do this by doing function = () => {}
The text was updated successfully, but these errors were encountered:
I noticed in your app.js you binded all of your methods that affected the state by doing this.function = this.function.bind(this). We can also easily just bind the method where we define it by using the arrow syntax, we can do this by doing function = () => {}
The text was updated successfully, but these errors were encountered: