▲ Why and How to Use PureComponent in React.js at 60devs.com▼5 up and 0 down, posted by orkon 2871 days ago 2 comments
davidspiess 2870 days ago. link 1 point ▲ ▼Can somebody explain me this syntax? <button onClick={::this.handleClick} />
xat 2870 days ago. link 3 points ▲ ▼It's a shortcut for: <button onClick={this.handleClick.bind(this)} /> Have a look at https://github.com/tc39/proposal-bind-operator