Which is the common way to introduce a ref in React, and how will it differ with curly brackets, parentheses and without brackets?
Line 1:
buttonRef={n => {this.loadMoreBtn = n}}
Line 2:
buttonRef={n => (this.loadMoreBtn = n)}
Line: 3
buttonRef={n => this.loadMoreBtn = n}